0
Int input(python)
How do i ask for input receiving an int in pyhton?
2 Answers
+ 3
x = int(input())
this way the input, which is always a string, will be converted to an integer and stored in the variable x.
0
Thank you i inverted int and input in the line