Python Vérifiez si la variable est itérable

from collections import Iterable

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