Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
I don't know whether in "input always returns strings", "returns" is correct. – Trufa Mar 24 '11 at 19:56
it looks like you're using python 3.x in which case yes input always returns strings. See: docs.python.org/release/3.1.3/library/functions.html#input – Daniel DiPaolo Mar 24 '11 at 19:57
@DanielDiPaolo: Oh yes, I'm aware of that, hence the question, I was just didn't know if the word return was correct. – Trufa Mar 24 '11 at 20:00
ah, then yes the term "returns" is precisely the correct term! – Daniel DiPaolo Mar 24 '11 at 20:02

5 Answers

up vote 27 down vote accepted

Simply try converting it to an int and then bailing out if it doesn't work.

try:
   val = int(userInput)
except ValueError:
   print("That's not an int!")
share|improve this answer
Nice I'm checking it out! (that was some fast up-votes!) :) – Trufa Mar 24 '11 at 19:58
That seems to be working great. – Trufa Mar 24 '11 at 20:06

For Python 3 the following will work.

userInput = 0
while True:
  try:
     userInput = int(input("Enter something: "))       
  except ValueError:
     print("Not an integer!")
     continue
  else:
     print("Yes an integer!")
     break 
share|improve this answer

Apparently this will not work for negative values, but it will for positive. Sorry about that, just learned about this a few hours ago myself as I have just recently gotten into Python.

Use isdigit()

if userinput.isdigit():
    #do stuff
share|improve this answer
7  
"-1".isdigit() == False – BatchyX Mar 24 '11 at 19:55
1  
Thanks for the clarification. – Trufa Mar 24 '11 at 20:11

This works with any number, including a fraction:

import fractions

def isnumber(s):
   try:
     float(s)
     return True
   except ValueError:
     try: 
       Fraction(s)
       return True
     except ValueError: 
       return False
share|improve this answer

Works fine for check if an input is a positive Integer AND in a specific range

def checkIntValue():
    '''Works fine for check if an **input** is
   a positive Integer AND in a specific range'''
    maxValue = 20
    while True:
        try:
            intTarget = int(input('Your number ?'))
        except ValueError:
            continue
        else:
            if intTarget < 1 or intTarget > maxValue:
                continue
            else:
                return (intTarget)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.