1
私はPythonで辞書を作成しました。TypeError: 'long'オブジェクトは反復不可能です
stb_info = self.stb_type()
print type(stb_info) #The output gives me dict
私は、次のエラーを取得しています各グループ
for group_no, shelves in stb_info:
self.thread_function(group_no, shelves)
のための私のトレッド機能を実行したい:
TypeError: 'long' object is not iterable
だから、どのように私はこのバグを解決することができますか?
それはPython 2.xであるため、 '.iteritems()'です。 – katrielalex