Answers for "python get if var is itterable"

1

python check if variable is iterable

from collections import Iterable

def iterable(obj):
    return isinstance(obj, Iterable)
Posted by: Guest on September-13-2020

Python Answers by Framework

Browse Popular Code Answers by Language