回答編集履歴

1

実行例追記

2020/05/05 08:47

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -44,4 +44,12 @@
44
44
 
45
45
  IndexError: list index out of range
46
46
 
47
+ >>> w[0][0]
48
+
49
+ 'a'
50
+
51
+ >>> w[0][1]
52
+
53
+ 'b'
54
+
47
55
  ```