当前位置:   article > 正文

python 报错TypeError: ‘int‘ object is not iterable(‘int‘对象不可迭代)_iterable expected, not int

iterable expected, not int

代码如下:

str = 'abcd'
for i in len(str):
    print(i)
  • 1
  • 2
  • 3

打印结果:

  TypeError: 'int' object is not iterable
  • 1

这是因为什么原因呢?
这是因为我们尝试迭代一个整数对象,但Python无法迭代整数。

解决方法:使用range()函数,代码如下:

str = 'abcd'
# 使用range函数迭代整数对象
for i in range(len(str)):
    print(i)
  • 1
  • 2
  • 3
  • 4

打印结果:

0
1
2
3
  • 1
  • 2
  • 3
  • 4

这样我们就可以打印出str的长度了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/692431
推荐阅读
相关标签
  

闽ICP备14008679号