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

I would like to be able to tell if a variable is an int or not using an if statement in Python. How would I go about this.

share|improve this question
There are no variables in Python, there are only objects and references to objects – eyquem Feb 7 '11 at 8:20
3  
@eyquem: There is no need to be formal here. Of course there are variables in Python, the term is used many times throughout the official documentation, e.g. docs.python.org/tutorial/introduction.html#numbers ("The equal sign ('=') is used to assign a value to a variable"). – Ferdinand Beyer Feb 7 '11 at 8:42
4  
The next question is: Why do you need to do that? Usually you shouldn't need to do any type checking in Python. Use "duck typing" instead. – Tim Pietzcker Feb 7 '11 at 8:59
@Tim Pietzcker: Thanks for pointing. I've deleted my answer. – Mudassir Feb 7 '11 at 9:44

3 Answers

up vote 5 down vote accepted

Use isinstance:

if isinstance(var, int):
  print "Int"
elif isinstance(var, str):
  print "Str"
else:
  print "Other:", type(var)
share|improve this answer
There is also the 'types' module that you could use to help! – Iacks Feb 7 '11 at 9:02
if isinstance(x,int):
 print 'win'
share|improve this answer

You just need to use isinstance:

value = 123
if isinstance(value, int):
    print "Int"
else:
    print "Not Int"
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.