Python Check si la variable es iterable

from collections import Iterable

def iterable(obj):
    return isinstance(obj, Iterable)
2Bowls