Mercurial > hg > tvii
view tvii/iterable.py @ 57:c5a2e6d861bf
[link] machinelearningmastery.com
| author | Jeff Hammel <k0scist@gmail.com> | 
|---|---|
| date | Sun, 08 Oct 2017 12:59:47 -0700 | 
| parents | 0149be5a984c | 
| children | 
line wrap: on
 line source
def isiterable(x): try: iter(x) return True except TypeError: return False
