Skip to content

Instantly share code, notes, and snippets.

@schlady
Created February 13, 2012 16:03
Show Gist options
  • 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