我按照教程:

python - 当判断iterable得到NameError : name  'Iterable'  is not defined-LMLPHP

在我的 PyCharm 中,我按照教程进行操作:

python - 当判断iterable得到NameError : name  'Iterable'  is not defined-LMLPHP

我收到错误:

最佳答案

from collections import Iterable

bool = isinstance({},Iterable)
print(bool)

输出

真的

关于python - 当判断iterable得到NameError : name 'Iterable' is not defined,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45396406/

10-12 21:00