我正在尝试在 Python 中设置数组的索引,但它没有按预期运行:
theThing = []
theThing[0] = 0
'''Set theThing[0] to 0'''
这会产生以下错误:
Traceback (most recent call last):
File "prog.py", line 2, in <module>
theThing[0] = 0;
IndexError: list assignment index out of range
在 Python 中设置数组索引的正确语法是什么?