Comment dire qu'une entrée doit être un nombre Python

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