回答編集履歴

2

Omit answer

2020/08/11 17:05

投稿

y_shinoda
y_shinoda

スコア3272

test CHANGED
@@ -43,15 +43,3 @@
43
43
  TypeError: 'NoneType' object is not callable
44
44
 
45
45
  ```
46
-
47
-
48
-
49
- リストの 3 番目の要素を `print()` したい場合は次のようにコーディングします:
50
-
51
-
52
-
53
- ```python
54
-
55
- print(ABClist[2])
56
-
57
- ```

1

Fix answer

2020/08/11 17:05

投稿

y_shinoda
y_shinoda

スコア3272

test CHANGED
@@ -52,6 +52,6 @@
52
52
 
53
53
  ```python
54
54
 
55
- print(ABClist[3])
55
+ print(ABClist[2])
56
56
 
57
57
  ```