Wie man sagt, dass eine Eingabe eine Zahl Python sein muss
try:
val = int(userInput)
except ValueError:
print("That's not an int!")
Annoyed Ant
try:
val = int(userInput)
except ValueError:
print("That's not an int!")