Is there a method like isiterable? The only solution I have found so far is to call
hasattr(myObj, '__iter__')
But I am not sure how fool-proof this is.
|
Is there a method like
But I am not sure how fool-proof this is. |
||||
|
I Checking for
The
II Another general pythonic approach is to assume an iterable, then fail gracefully if it does not work on the given object. The python glossary:
...
III The
|
|||||||||||||||||||||
|
Duck typing
Type checkingUse the Abstract Base Classes. They need at least Python 2.6 and work only for new-style classes.
|
|||||||||||||||||||||
|
|
This isn't sufficient: the object returned by In Python, a good practice is to " try and see " instead of "checking". |
|||
|
The best solution I've found so far:
which basically checks if the object implements the Advantages (none of the other solutions has all three):
Notes:
|
|||||||||||||
|
|
You could try this:
If we can make a generator that iterates over it (but never use the generator so it doesn't take up space), it's iterable. Seems like a "duh" kind of thing. Why do you need to determine if a variable is iterable in the first place? |
|||||||||||||||
|
Don't run checks to see |
|||||||||||||||||
|
|
Found a nice solution here:
|
|||
|
|
|
On python <= 2.5, you can't and shouldn't - iterable was an "informal" interface. But since python2.6 and 3.0 you can leverage the new ABC (abstract base class) infrastructure along with some builtin ABCs which are available in the collections module:
Now, whether this is desiderable or actually works, is just a matter of conventions. As you can see, you can register a non-iterable object as Iterable - and it will raise an exception at runtime. Hence, isinstance acquires a "new" meaning - it just checks for "declared" type compatibility, which is a good way to go in Python. On the other hand, if your object does not satifsy the interface you need, what are you going to do? take the following example:
If the object doesn't satifsy what you expect, you just throw a TypeError, but if the proper ABC has been registered, your check is unuseful. On the contrary, if the So, if you just expect an iterable, iterate over it and forget it. On the other hand, if you need to do different things depending on input type, you might find the ABC infrastracture pretty useful. |
|||||||||
|
|
While |
|||
|
|
|
Btw,
|
|||
|
|
|
How about we check both the
see the definition of iterable |
|||
|
|
|
I often find convenient, inside my scripts, to define an
or better, as Alfe pointed out,
so you can test if any object is iterable in the very readable form
as you would do with the |
|||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
__getitem__is also sufficient to make an object iterable – Kos Jul 2 '12 at 14:58