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.
edit: Updated to add some more custom tests. |
|||||||||||||||||||||
|
|
You can do that using
|
|||
|
|
|
It might be more Pythonic to use a 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 The other problem with the |
|||||
|
|
It might be desirable to be able to pass either a single item or a list of items and use the same code. |
||||
|
|
trydoesn'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