Comment vérifier si une entrée est un nombre en Python
user_input = input("Enter Something:")
if user_input.isnumeric():
print("Is a number")
else:
print("Is not a number")
Clean Cormorant