Skip to content

Instantly share code, notes, and snippets.

@schlady
Created February 13, 2012 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schlady/1817862 to your computer and use it in GitHub Desktop.
Save schlady/1817862 to your computer and use it in GitHub Desktop.
Find out if a python object is iterable
def isiterable(obj):
return hasattr(obj, '__contains__')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment