I follow the tutorial:
In my PyCharm I follow the tutorial:
I get the error:
Traceback (most recent call last): File "/Users/adob/TestPython/test02/passwd.py", line 19, in bool = isinstance({}, Iterable) NameError: name 'Iterable' is not defined
I follow the tutorial:
In my PyCharm I follow the tutorial:
I get the error:
Traceback (most recent call last): File "/Users/adob/TestPython/test02/passwd.py", line 19, in bool = isinstance({}, Iterable) NameError: name 'Iterable' is not defined
Python 2:
from collections import Iterable
Python 3:
from collections.abc import Iterable
Or both:
try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable