回答編集履歴
1
実行例追記
answer
CHANGED
@@ -21,4 +21,8 @@
|
|
21
21
|
Traceback (most recent call last):
|
22
22
|
File "<stdin>", line 1, in <module>
|
23
23
|
IndexError: list index out of range
|
24
|
+
>>> w[0][0]
|
25
|
+
'a'
|
26
|
+
>>> w[0][1]
|
27
|
+
'b'
|
24
28
|
```
|