Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
5  
The correct question would be "how do I determine if an object is iterable"—variables are not the same as the objects they contain. – Erik Allik Feb 24 '12 at 12:07
   
__getitem__ is also sufficient to make an object iterable – Kos Jul 2 '12 at 14:58
1  
@ErikAllik I corrected the question, you may delete your comment now. – Piotr Dobrogost Dec 16 '12 at 22:49
IMP: Answer from Georg Schölly is the MOST CORRECT ANSWER – Raghu Apr 3 at 21:04

12 Answers

up vote 132 down vote accepted

I Checking for __iter__ works on sequence types, but it would fail on e.g. strings. I would like to know the right answer too, until then, here is one possibility (which would work on strings, too):

try:
    some_object_iterator = iter(some_object)
except TypeError, te:
    print some_object, 'is not iterable'

The iter built-in:

>>> help(iter)
 1 Help on built-in function iter in module __builtin__:
 2 
 3 iter(...)
 4     iter(collection) -> iterator
 5     iter(callable, sentinel) -> iterator
 6     
 7     Get an iterator from an object.  In the first form, the argument must
 8     supply its own iterator, or be a sequence.
 9     In the second form, the callable is called until it returns the sentinel.

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:

Pythonic programming style that determines an object's type by inspection of its method or attribute signature rather than by explicit relationship to some type object ("If it looks like a duck and quacks like a duck, it must be a duck.") By emphasizing interfaces rather than specific types, well-designed code improves its flexibility by allowing polymorphic substitution. Duck-typing avoids tests using type() or isinstance(). Instead, it typically employs the EAFP (Easier to Ask Forgiveness than Permission) style of programming.

...

try:
    [ e for e in my_object]
except TypeError:
    print my_object, 'is not iterable'

III The collections module provides some abstract base classes, which allow to ask classes or instances if they provide particular functionality, for example:

import collections

if isinstance(e, collections.Iterable):
    # e is iterable
share|improve this answer
7  
[e for e in my_object] can raise an exception for other reasons, ie my_object is undefined or possible bugs in my_object implementation. – Nick Dandoulakis Dec 23 '09 at 12:39
9  
A string is a sequence (isinstance('', Sequence) == True) and as any sequence it is iterable (isinstance('', Iterable)). Though hasattr('', '__iter__') == False and it might be confusing. – J.F. Sebastian Dec 24 '09 at 0:11
27  
If my_object is very large (say, infinite like itertools.count()) your list comprehension will take up a lot of time/memory. Better to make a generator, which will never try to build a (potentially infinite) list. – Chris Lutz Dec 24 '09 at 3:42
10  
+1 for the last answer – Michael Mior Oct 8 '10 at 1:00
2  
What if some_object throws TypeError caused by other reason(bugs etc.) too? How can we tell it from the "Not iterable TypeError"? – Shaung Sep 13 '11 at 7:34
show 8 more comments

Duck typing

try:
    iterator = iter(theElement)
except TypeError:
    # not iterable
else:
    # iterable

# for obj in iterator:
#     pass

Type checking

Use the Abstract Base Classes. They need at least Python 2.6 and work only for new-style classes.

import collections

if isinstance(theElement, collections.Iterable):
    # iterable
else:
    # not iterable
share|improve this answer
8  
+1 for being the first to mention collections.Iterable! – Scott Griffiths Dec 23 '09 at 13:22
8  
This should have been the one accepted. Another frustrating result from SO readers. – Brandon Dec 23 '09 at 18:31
5  
isinstance(x, ABC) doesn't work on instances of old-style classes. – J.F. Sebastian Dec 24 '09 at 0:04
4  
ABC classes? Someone has RAS syndrome. en.wikipedia.org/wiki/RAS_syndrome – Chris Lutz Dec 24 '09 at 10:14
3  
Is iter() guaranteed to never throw a TypeError for any other reason?? – mehaase May 24 '12 at 15:23
show 3 more comments

This isn't sufficient: the object returned by __iter__ must implement the iteration protocol (i.e. next method). See the relevant section in the documentation.

In Python, a good practice is to " try and see " instead of "checking".

share|improve this answer
4  
"duck typing" I believe? :) – willem Dec 23 '09 at 12:25
3  
@willem: or "don't ask for permission but for forgiveness" ;-) – jldupont Dec 23 '09 at 12:29

The best solution I've found so far:

hasattr(obj, '__contains__')

which basically checks if the object implements the in operator.

Advantages (none of the other solutions has all three):

  • it is an expression (works as a lambda, as opposed to the try...catch variant)
  • it is (should be) implemented by all iterables, including strings (as opposed to __iter__)
  • works on any Python >= 2.5

Notes:

  • the Python philosophy of "ask for forgiveness, not permission" doesn't work well when e.g. in a list you have both iterables and non-iterables and you need to treat each element differently according to it's type (treating iterables on try and non-iterables on except would work, but it would look butt-ugly and misleading)
  • solutions to this problem which attempt to actually iterate over the object (e.g. [x for x in obj]) to check if it's iterable may induce significant performance penalties for large iterables (especially if you just need the first few elements of the iterable, for example) and should be avoided
share|improve this answer
2  
Nice, but why not use the collections module as proposed in stackoverflow.com/questions/1952464/…? Seems more expressive to me. – Dave Abrahams May 3 '11 at 4:10
1  
It's shorter (and doesn't require additional imports) without losing any clarity: having a "contains" method feels like a natural way to check if something is a collection of objects. – Vlad Nov 25 '11 at 12:04
10  
Just because something can contain something doesn't necessarily mean it's iterable. For example, a user can check if a point is in a 3D cube, but how would you iterate through this object? – Darthfett May 18 '12 at 14:52

You could try this:

def iterable(a):
    try:
        (x for x in a)
        return True
    except TypeError:
        return False

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?

share|improve this answer
What about iterable(itertools.repeat(0))? :) – badp Dec 23 '09 at 12:24
1  
@badp, the (x for x in a) just creates a generator, it doesn't do any iteration on a. – catchmeifyoutry Dec 23 '09 at 12:31
Oh, nice! I didn't know about that one. Sorry. – badp Dec 23 '09 at 12:34
1  
Is trying (x for x in a) precisely equivalent to trying iterator = iter(a)? Or there are some cases where the two are different? – max Dec 15 '12 at 20:05
@max Nice question so please post it as one :) – Piotr Dobrogost Dec 15 '12 at 22:30
show 1 more comment
try:
  #treat object as iterable
except TypeError, e:
  #object is not actually iterable

Don't run checks to see if your duck really is a duck to see if it is iterable or not, treat it as if it was and complain if it wasn't.

share|improve this answer
1  
Technically, during iteration your computation might throw a TypeError and throw you off here, but basically yes. – Chris Lutz Dec 23 '09 at 12:22
I know in .NET it was a bad idea to have exceptions handle program flow, as exceptions were slow. How quickly does python handle exceptions? – willem Dec 23 '09 at 12:26
4  
@willem: Please use timeit to perform a benchmark. Python exceptions are often faster than if-statements. They can take a slightly shorter path through the interpreter. – S.Lott Dec 23 '09 at 14:24
2  
@willem: IronPython has slow (compared to CPython) exceptions. – J.F. Sebastian Dec 24 '09 at 0:01
A working try: statement is really fast. So if you have few exceptions, try-except is fast. If you expect many exceptions, “if” can be faster. – Arne Babenhauserheide Jun 22 '12 at 10:04

Found a nice solution here:

isiterable = lambda obj: isinstance(obj, basestring) \
    or getattr(obj, '__iter__', False)
share|improve this answer

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:

from collections import Iterable

class MyObject(object):
    pass

mo = MyObject()
print isinstance(mo, Iterable)
Iterable.register(MyObject)
print isinstance(mo, Iterable)

print isinstance("abc", Iterable)

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:

from collections import Iterable
from traceback import print_exc

def check_and_raise(x):
    if not isinstance(x, Iterable):
        raise TypeError, "%s is not iterable" % x
    else:
        for i in x:
            print i

def just_iter(x):
    for i in x:
        print i


class NotIterable(object):
    pass

if __name__ == "__main__":
    try:
        check_and_raise(5)
    except:
        print_exc()
        print

    try:
        just_iter(5)
    except:
        print_exc()
        print



    try:
        Iterable.register(NotIterable)
        ni = NotIterable()
        check_and_raise(ni)
    except:
        print_exc()
        print

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 __iter__ method is available python will automatically recognize object of that class as being Iterable.

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.

share|improve this answer
+1: ABC's rule. – S.Lott Dec 23 '09 at 13:45
6  
don't use bare except: in the example code for beginners. It promotes bad practice. – J.F. Sebastian Dec 23 '09 at 23:59
J.F.S: I wouldn't, but I needed to go through multiple exception-raising code and I didn't want to catch the specific exception... I think the purpose of this code is pretty clear. – Alan Franzoni Dec 24 '09 at 17:17

While hasattr(object_in_question, "__iter__") works on most iterables, but not on strings, hasattr(object_in_question, "__len__") and equivalently hasattr(object_in_question, "__getitem__") work on iterators that are not generators, so might be useful in some cases, too.

share|improve this answer

Btw, isinstance(obj, collections.Iterable) DO work at least at Python 2.7, at the machine I am using right now:

from collections import Iterable

class A:        
    def __iter__(self):
        pass
    def next(self):
        pass

class B(object):
    def __iter__(self):
        pass
    def next(self):
        pass

a = A()
b = B()

isinstance(a, Iterable) # True
isinstance(b, Iterable) # True
share|improve this answer

How about we check both the __iter__ and __getitem__ attrs?

# str is iterable.
s = str("abcdef")
hasattr(s,"__iter__")  # False
hasattr(s,"__getitem__") # True

# dict is iterable
d = { "A":"B" }
hasattr(d,"__iter__")  # True
hasattr(d,"__getitem__") #True

# continue....

see the definition of iterable

share|improve this answer

I often find convenient, inside my scripts, to define an iterable function:

import collections

def iterable(obj):
    if isinstance(obj, collections.Iterable):
        return True
    return False

or better, as Alfe pointed out,

import collections

def iterable(obj):
    return isinstance(obj, collections.Iterable):

so you can test if any object is iterable in the very readable form

if iterable(obj):
    # act on iterable
else:
    # not iterable

as you would do with thecallable function

share|improve this answer
1  
Whenever you do sth like if x: return True else: return False (with x being boolean) you can write this as return x. In your case return isinstance(…) without any if. – Alfe May 7 at 21:34

protected by jamylak Apr 10 at 11:35

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.

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