input only numbers 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: python input integer only
num = int(input("Enter an integer number: "))