python how to see if the input is an integer code example
Example 1: check integer number python
N.is_integer()
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")