What is the best way to check whether a given object is of a given type? How about checking whether the object inherits from a given type?
Let's say I have an object o. How do I check whether it's a str?
|
|
|
To check if the type of o is exactly str: type(o) is strTo check if o is an instance of str or any subclass of str (this would be the "canonical" way): isinstance(o, str)The following also work, and can be useful in some cases: issubclass(type(o), str) type(o) in ([str] + str.__subclasses__()) See Built-in Functions in the Python Library Reference for relevant information. One more note: in this case, you may actually want to use isinstance(o, basestring) because this will also catch Unicode strings (unicode is not a subclass of str; both str and unicode are subclasses of basestring). Alternatively, isinstance accepts a tuple of classes. This will return True if x is an instance of any subclass of any of (str, unicode): isinstance(o, (str, unicode)) |
|||||||
|
|
The most Pythonic way to check the type of an object is... not to check it. Since Python encourages Duck Typing, you should just try to use the object's methods the way you want to use them. So if your function is looking for a writable file object, don't check that it's a subclass of Of course, sometimes these nice abstractions break down and |
|||||||||||||
|
|
|
|||||||||
|
|
I think the cool thing about using a dynamic language like python is you really shouldn't have to check something like that. I would just call the required methods on your object and catch an I've used this alot when getting data off the web with But I'm sure there is a time and place for using |
|||
|
|
|
Here is an example why duck typing is evil without knowing when it is dangerous. For instance: Here is the Python code (possibly omitting proper indenting), note that this situation is avoidable by taking care of isinstance and issubclassof functions to make sure that when you really need a duck, you don't get a bomb.
|
|||
|
|
To Hugo: You probably mean Say you want to add the object to an existing sequence, or if it's a sequence of objects, add them all
One trick with this is if you are working with strings and/or sequences of strings - that's tricky, as a string is often thought of as a single object, but it's also a sequence of characters. Worse than that, as it's really a sequence of single-length strings. I usually choose to design my API so that it only accepts either a single value or a sequence - it makes things easier. It's not hard to put a (though this can cause errors with strings, as they do look like (are) sequences) |
||||
|
|