質問編集履歴

2

文法修正

2020/04/21 11:26

投稿

rs888
rs888

スコア5

test CHANGED
File without changes
test CHANGED
@@ -26,28 +26,6 @@
26
26
 
27
27
  最後の三行目しか反映されない。
28
28
 
29
- ```python
30
-
31
- with open('you.txt',mode ='w')as m:
32
-
33
- with open('me.txt','r') as e:
34
-
35
- count =0
36
-
37
- for line in e:
38
-
39
- count += 1
40
-
41
- m.write(str(count).zfill(2)+' ')
42
-
43
- m.write(line)
44
-
45
-
46
-
47
- コード
48
-
49
- ```
50
-
51
29
 
52
30
 
53
31
  エラーメッセージ
@@ -66,9 +44,25 @@
66
44
 
67
45
 
68
46
 
69
- ```ここに言語名を入力
47
+ ```python
70
48
 
71
49
  ソースコード
50
+
51
+ python
52
+
53
+ with open('you.txt',mode ='w')as m:
54
+
55
+ with open('me.txt','r') as e:
56
+
57
+ count =0
58
+
59
+ for line in e:
60
+
61
+ count += 1
62
+
63
+ m.write(str(count).zfill(2)+' ')
64
+
65
+ m.write(line)
72
66
 
73
67
  ```
74
68
 

1

コードの書き換え

2020/04/21 11:26

投稿

rs888
rs888

スコア5

test CHANGED
File without changes
test CHANGED
@@ -1,5 +1,3 @@
1
- コード
2
-
3
1
  ```### 前提・実現したいこと
4
2
 
5
3
 
@@ -28,9 +26,9 @@
28
26
 
29
27
  最後の三行目しか反映されない。
30
28
 
29
+ ```python
31
30
 
32
-
33
- ```with open('you.txt',mode ='w')as m:
31
+ with open('you.txt',mode ='w')as m:
34
32
 
35
33
  with open('me.txt','r') as e:
36
34
 
@@ -46,9 +44,11 @@
46
44
 
47
45
 
48
46
 
47
+ コード
48
+
49
49
  ```
50
50
 
51
- ```
51
+
52
52
 
53
53
  エラーメッセージ
54
54