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

【小卒Python第四篇】 TypeError: 'builtin_function_or_method' object is not iterable

彭烨熠
2023-12-01

for i,n in Counter(ass).items():
    print('the word is %r the counter is % d'%(i,n))

上面如果items少了括号,会出现什么错误呢?
如下:

Traceback (most recent call last):
  File "<pyshell#16>", line 1, in <module>
    for i,n in ass.items:
TypeError: 'builtin_function_or_method' object is not iterable

 

这是什么意思呢?
--------------------- 
原疑问帖:https://blog.csdn.net/Hoontme/article/details/78974526
 

 

这里是回答上述帖子的错误,因为我这里也遇到了同样的错误,所以这里记录下来

如果遇到object is not iterable这样的的报错,一般是所迭代的对象或者所迭代的对象里面有不可以支持迭代的对象,请把这里的对象进行转换成可以迭代解析的对象即可,我这里遇到的是把对象转化成张量就好了

 类似资料: