这是 python 中 IDLE2 中的代码和错误。
我需要有序地包含每个“数据”元素作为键和值“otro”。好吧,“data”和“otro”是一个包含 38 个字符串的列表,至于“dik”,它是一个字典。
>>> for i in range(len(otro)+1):
dik[dato[i]] = otro[i]
Traceback (most recent call last):
File "<pyshell#206>", line 2, in <module>
dik[dato[i]] = otro[i]
IndexError: list index out of range
>>>
这个问题是 range(0, 38) 输出 -> (0, 1,2,3 ... 37) 而且很乱