python detect if number code example
Example 1: python check if number
if type(variable) == int or type(variable) == float:
isNumber = True
Example 2: python check if input is a number
user_input = input("Enter something:")
if type(user_input) == int:
return user_input
else:
print("Not a number")