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で配列のインデックスを設定するための正しい構文は何ですか?