python get user input while not integer code example
Example 1: how to say that an input needs to be a number python
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: "))