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

Is there a simple way to determine if a variable is a list, dictionary, or something else? Basically I am getting an object back that may be either type and I need to be able to tell the difference.

share|improve this question
1  
You shouldn't need to "tell the difference". Ever. The point of Python (and duck typing) is that you never need to know. Your function from which your "getting an object back" isn't designed properly if it returns objects of random, inconsistent types. – S.Lott Feb 9 '10 at 11:21
9  
While in general I agree with you, there are situations where it is helpful to know. In this particular case I was doing some quick hacking that I eventually rolled back, so you are correct this time. But in some cases - when using reflection, for example - it is important to know what type of object you are dealing with. – Justin Ethier Feb 9 '10 at 13:10
10  
@S.Lott I'd disagree with that; by being able to know the type, you can deal with some pretty variant input and still do the right thing. It lets you work around interface issues inherent with relying on pure duck-typing (eg, the .bark() method on a Tree means something entirely different than on a Dog.) For example, you could make a function that does some work on a file that accepts a string (eg, a path), a path object, or a list. All have different interfaces, but the final result is the same: do some operation on that file. – Robert P Jul 21 '11 at 21:33
4  
@S.Lott I hoped it would be obvious that it's a contrived example; nonetheless it's a major failing point of duck typing, and one that try doesn't help with. For example, if you knew that a user could pass in a string or an array, both are index-able, but that index means something completely different. Simply relying on a try-catch in those cases will fail in unexpected and strange ways. One solution is to make a separate method, another to add a little type checking. I personally prefer polymorphic behavior over multiple methods that do almost the same thing...but that's just me :) – Robert P Jul 22 '11 at 0:57
4  
@S.Lott, what about unit testing? Sometimes you want your tests to verify that a function is returning something of the right type. A very real example is when you have class factory. – 3noch Sep 24 '12 at 16:23
show 4 more comments

4 Answers

up vote 177 down vote accepted
>>> type( [] ) == list
True
>>> type( {} ) == dict
True
>>> type( "" ) == str
True
>>> type( 0 ) == int
True
>>> class Test1 ( object ):
    pass
>>> class Test2 ( Test1 ):
    pass
>>> a = Test1()
>>> b = Test2()
>>> type( a ) == Test1
True
>>> type( b ) == Test2
True
>>> type( b ) == Test1
False
>>> isinstance( b, Test1 )
True
>>> isinstance( b, Test2 )
True
>>> isinstance( a, Test1 )
True
>>> isinstance( a, Test2 )
False
>>> isinstance( [], list )
True
>>> isinstance( {}, dict )
True

edit: Updated to add some more custom tests.

share|improve this answer
11  
What a fast typist :) – telliott99 Feb 8 '10 at 21:44
15  
I think it's clearer to use is instead of == as the types are singletons – gnibbler Feb 8 '10 at 22:01
6  
@gnibbler, In the cases you would be typechecking (which you shouldn't be doing to begin with), isinstance is the preferred form anyhow, so neither == or is need be used. – Mike Graham Feb 8 '10 at 22:50
4  
@Mike Graham, there are times when type is the best answer. There are times when isinstance is the best answer and there are times when duck typing is the best answer. It's important to know all of the options so you can choose which is more appropriate for the situation. – gnibbler Feb 8 '10 at 23:13
2  
@gnibbler, That may be, though I haven't yet ran into the situation where type(foo) is SomeType would be better than isinstance(foo, SomeType). – Mike Graham Feb 9 '10 at 16:45
show 6 more comments

You can do that using type():

>>> a = []
>>> type(a)
<type 'list'>
>>> f = ()
>>> type(f)
<type 'tuple'>
share|improve this answer

It might be more Pythonic to use a try...except block. That way, if you have a class which quacks like a list, or quacks like a dict, it will behave properly regardless of what its type really is.

To clarify, the preferred method of "telling the difference" between variable types is with something called duck typing: as long as the methods (and return types) that a variable responds to are what your subroutine expects, treat it like what you expect it to be. For example, if you have a class that overloads the bracket operators with getattr and setattr, but uses some funny internal scheme, it would be appropriate for it to behave as a dictionary if that's what it's trying to emulate.

The other problem with the type(A) is type(B) checking is that if A is a subclass of B, it evaluates to false when, programmatically, you would hope it would be true. If an object is a subclass of a list, it should work like a list: checking the type as presented in the other answer will prevent this. (isinstance will work, however).

share|improve this answer
4  
Duck typing isn't really about telling the difference, though. It is about using a common interface. – Justin Ethier Nov 18 '11 at 19:31

It might be desirable to be able to pass either a single item or a list of items and use the same code.

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.