+ 2
How let the users just answer a num input in python
I want to make an interface with user input
2 Respostas
+ 2
Convert the input into an int or float...
int(input())
float(input())
+ 2
int(input("Number: "))
I want to make an interface with user input