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这样的的报错,一般是所迭代的对象或者所迭代的对象里面有不可以支持迭代的对象,请把这里的对象进行转换成可以迭代解析的对象即可,我这里遇到的是把对象转化成张量就好了