我刚刚在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呢?