vote up 1 vote down star

How can i find out if the obj returned by a func is a int or something else (like a sqlite cursor)

flag

38% accept rate
Why would you ever need to know this? Please provide some context in which you're trying to figure out the type. Perhaps an overview of the code you'd like to write. – S.Lott Feb 7 at 22:44
There are certainly valid reasons to check an object's type in Python. A code sample never hurts, of course. – David Feb 7 at 22:55
@David - type checking is often a clumsy mistake better solved by polymorphism. Code samples can help provide a better solution that avoids type checking entirely. – S.Lott Feb 8 at 0:19

2 Answers

vote up -1 vote down

Use the built-in "type" function, e.g. type(10) -> .

link|flag
Using type() to check equality means that instances of a subclass aren't recognized, so it's not usually the Right Thing. – Charles Duffy Feb 7 at 22:47
Yeah, sorry, you are right, isinstance is the better choice. – Johan Feb 7 at 22:52
Well, usually yes. Very occasionally you do still want type()... difficult to call without any context though. I don't know of any API that uses a variant that could be an int or SQLite cursor! – bobince Feb 7 at 23:19
Yes, right, and I think that also points back to what Charles said, that using either "type" or "isinstance" is usually not considered good practice. There probably are valid uses, but you may want to think once more about what you are trying to do before actually using any of them. – Johan Feb 8 at 10:41
vote up 11 vote down

Use isinstance(item, type) -- for instance:

if isinstance(foo, int):
    pass # handle this case

However, explicit type checking is not considered a good practice in the Python world -- it means that much of the power of duck typing is lost: Something which walks and quacks like a duck should be allowed to be a duck, even if it isn't! :)

link|flag
It's called isinstance() in Python – David Feb 7 at 22:43
Yup, caught that myself -- was fixing it as you replied. – Charles Duffy Feb 7 at 22:43

Your Answer

Get an OpenID
or

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