Jak powiedzieć, że dane wejściowe musi być liczbą Python

try:
   val = int(userInput)
except ValueError:
   print("That's not an int!")
Annoyed Ant