Answers for "how to say that an input needs to be a number python"

2

how to say that an input needs to be a number python

try:
   val = int(userInput)
except ValueError:
   print("That's not an int!")
Posted by: Guest on July-26-2020
2

python check if input is a number

user_input = input("Enter something:")

if type(user_input) == int:
    return user_input
else:
    print("Not a number")
Posted by: Guest on July-22-2020
-2

python check if input is a number

user_input = input("Enter something:")

if type(user_input) == int:
    print("Is a number")
else:
    print("Not a number")
Posted by: Guest on July-22-2020

Code answers related to "how to say that an input needs to be a number python"

Python Answers by Framework

Browse Popular Code Answers by Language