質問編集履歴

2

命令文が正しくなかったので修正

2017/12/28 06:46

投稿

poko_poko
poko_poko

スコア168

test CHANGED
File without changes
test CHANGED
@@ -30,9 +30,9 @@
30
30
 
31
31
 
32
32
 
33
- for i in range(2):
33
+ for i in range(3):
34
34
 
35
- hozonsaki[i].write('output' + i + 'に書き込みたい')
35
+ hozonsaki[i].write('output' + str(i) + 'に書き込みたい')
36
36
 
37
37
  ```
38
38
 

1

誤字

2017/12/28 06:46

投稿

poko_poko
poko_poko

スコア168

test CHANGED
File without changes
test CHANGED
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- hozonsaki = ['output1','output2','output3']
29
+ hozonsaki = ['output0','output1','output2']
30
30
 
31
31
 
32
32