Lets say you want to know if a user input is a number:
userInput = input("Enter something:")
if type(userInput) == int:
print("Is a number")
else:
print("Not a number")
This won't work since input always returns a string.
In other words how to check if the user input .. -1, 0, 1...
Thanks in advance!

inputalways returns strings. See: docs.python.org/release/3.1.3/library/functions.html#input – Daniel DiPaolo Mar 24 '11 at 19:57