質問編集履歴
3
「コードの挿入」状態に編集しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
```python
|
2
2
|
|
3
|
+
|
4
|
+
|
5
|
+
c_count = int(input())
|
6
|
+
|
3
|
-
|
7
|
+
c.list = []
|
4
8
|
|
5
9
|
for i in range(c_count):
|
6
10
|
|
2
「コードの挿入」状態に編集しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,10 +1,6 @@
|
|
1
|
-
|
1
|
+
```python
|
2
2
|
|
3
|
-
#######コード
|
4
|
-
|
5
|
-
c_count = int(input())
|
6
|
-
|
7
|
-
|
3
|
+
= []
|
8
4
|
|
9
5
|
for i in range(c_count):
|
10
6
|
|
@@ -42,6 +38,16 @@
|
|
42
38
|
|
43
39
|
|
44
40
|
|
41
|
+
```
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
|
45
51
|
#######発生するエラー
|
46
52
|
|
47
53
|
Runtime error
|
1
追記:「かっこが足りない」とのご指摘を受けて変更してもう一度実行してみたところまた別のエラーが発生しました。このエラーについても教えてください
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
for i in range(c_count):
|
10
10
|
|
11
|
-
c_list.append(input()
|
11
|
+
c_list.append(input())
|
12
12
|
|
13
13
|
|
14
14
|
|
@@ -46,12 +46,12 @@
|
|
46
46
|
|
47
47
|
Runtime error
|
48
48
|
|
49
|
+
実行時エラーメッセージ
|
49
50
|
|
51
|
+
File "Main.py", line 9
|
50
52
|
|
51
|
-
|
53
|
+
print(c_count)
|
52
54
|
|
53
|
-
|
55
|
+
^
|
54
56
|
|
55
|
-
^
|
56
|
-
|
57
|
-
|
57
|
+
IndentationError: unindent does not match any outer indentation level
|