相关疑难解决方法(0)

TypeError:'long'对象不可迭代

我刚刚在python中创建了一个字典.

stb_info = self.stb_type()
print type(stb_info) #The output gives me dict
Run Code Online (Sandbox Code Playgroud)

当我想为每个小组运行我的胎面功能时

for group_no, shelves in stb_info:
    self.thread_function(group_no, shelves)
Run Code Online (Sandbox Code Playgroud)

我收到以下错误:

TypeError: 'long' object is not iterable
Run Code Online (Sandbox Code Playgroud)

那么,我怎么能解决这个bug呢?

python python-2.7

1
推荐指数
1
解决办法
6563
查看次数

标签 统计

python ×1

python-2.7 ×1