Discuss / Python / 关于导入Iterable

关于导入Iterable

Topic source

经过尝试,再python 3.8中

代码

```

from collections import Iterable

```

应该改为

```

from collections.abc import Iterable

```

方可运行成功


  • 1

Reply