我按照教程:無法判斷迭代在Python
在我PyCharm我按照教程:
我得到的錯誤:
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
在我PyCharm我按照教程:
我得到的錯誤:
Traceback (most recent call last): File "/Users/adob/TestPython/test02/passwd.py", line 19, in bool = isinstance({}, Iterable) NameError: name 'Iterable' is not defined
from collections import Iterable
bool = isinstance({},Iterable)
print(bool)
輸出
真
Iterable在collections
模塊,你應該導入它。
from collections import Iterable
在Py3中,另一個選項與'typing'模塊的輸入相同,但給定'print'語句假定OP使用Py2。 – AChampion
你不應該使用的圖像時,可以使用文本 –
@AzatIbrakov我用的形象,因爲有在網上紅在這裏。使用代碼無法顯示它。 – 244boy