mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 19:18:21 +00:00
9 lines
184 B
Python
9 lines
184 B
Python
def is_iterable(x):
|
|
"An implementation independent way of checking for iterables"
|
|
try:
|
|
iter(x)
|
|
except TypeError:
|
|
return False
|
|
else:
|
|
return True
|