File "F:\ake\pa\th\help.py", line 268, in main
print type(outputs[x])
KeyError: '0'
我的文件很大,所以outputs
可以看到这些地方,按照它们应该如何执行的顺序:
outputs={}
#now in another function
global another_var,outputs
#if malarkey...
elif lines[row][col]=="0":
outputs["0"]=str(state) #state is either 0 or 1
#back in original function
global outputs
for x in nums:
print outputs[x], #line 268
我真的不确定为什么会收到上述错误。