Python überprüfen, ob die Variable iterbar ist
from collections import Iterable
def iterable(obj):
return isinstance(obj, Iterable)
2Bowls
from collections import Iterable
def iterable(obj):
return isinstance(obj, Iterable)