Как проверить, является ли вход номер в Python
user_input = input("Enter Something:")
if user_input.isnumeric():
print("Is a number")
else:
print("Is not a number")
Clean Cormorant