Python : TypeError: 'int' object is not iterable
2021-04-14 09:28
标签:python for 必须 lin list isa main most ada 用循环依次对list中的每个名字打印出 -------------------------------------------------------- L = [‘Bart‘, ‘Lisa‘, ‘Adam‘] for i in range(x): print(‘Hello,‘, L[i]) -------------------------------------------------------- 此处,若直接使用 for i in x 时,编译报错:TypeError: ‘int‘ object is not iterable: Traceback (most recent call last): 该问题的原因是:不能直接用int进行迭代,而必须使用range方法,即range(x). Python : TypeError: 'int' object is not iterable 标签:python for 必须 lin list isa main most ada 原文地址:https://www.cnblogs.com/Johnny-z6951/p/13336719.htmlHello, xxx!
x = len(L)
File "main.py", line 5, in
for i in x:
TypeError: ‘int‘ object is not iterable
上一篇:学习Java的第十三天
下一篇:Shell 数组
文章标题:Python : TypeError: 'int' object is not iterable
文章链接:http://soscw.com/index.php/essay/75611.html