how to check user input in python code example
Example 1: python check if string is in input
try:
val = int(userInput)
except ValueError:
print("That's not an int!")
Example 2: how to get user input python
x = input("enter prompt here: ")
Example 3: 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")