当前位置: 首页 > 工具软件 > Object Shell > 使用案例 >

TypeError: 'type' object is not iterable

乔宏峻
2023-12-01

在语句中目标名字要和定义的一样

 

 

>>> range(10)
range(0, 10)
>>> for i in range:
print(i)


Traceback (most recent call last):
File "<pyshell#47>", line 1, in <module>
for i in range:
TypeError: 'type' object is not iterable
>>> for i in range(10):
print(i)


0
1
2
3
4
5
6
7
8
9

转载于:https://www.cnblogs.com/muncihlai/p/9428199.html

 类似资料: