回答編集履歴

1

ちょっとした修正

2021/03/13 06:47

投稿

xail2222
xail2222

スコア1508

test CHANGED
@@ -14,17 +14,15 @@
14
14
 
15
15
  ```python
16
16
 
17
- import copy
18
-
19
- list_data=[]
17
+ list_test=[]
20
18
 
21
19
  row=[0,0,0]
22
20
 
23
- list_data.append(row)
21
+ list_test.append(row)
24
22
 
25
- list_data.append(row)
23
+ list_test.append(row)
26
24
 
27
- list_data.append(row)
25
+ list_test.append(row)
28
26
 
29
27
 
30
28
 
@@ -32,13 +30,13 @@
32
30
 
33
31
 
34
32
 
35
- list_data=[]
33
+ list_test=[]
36
34
 
37
- list_data.append([0,0,0])
35
+ list_test.append([0,0,0])
38
36
 
39
- list_data.append([0,0,0])
37
+ list_test.append([0,0,0])
40
38
 
41
- list_data.append([0,0,0])
39
+ list_test.append([0,0,0])
42
40
 
43
41
 
44
42