设置Python数组的索引。
设置Python数组的索引。
我在Python中尝试设置数组的索引,但它的行为与预期不同:
theThing = [] theThing[0] = 0 '''Set theThing[0] to 0'''
这将产生以下错误:
Traceback (most recent call last): File "prog.py", line 2, in theThing[0] = 0; IndexError: list assignment index out of range
在Python中设置数组的索引的正确语法是什么?
admin 更改状态以发布 2023年5月23日