回答編集履歴
1
情報追加
test
CHANGED
@@ -13,3 +13,29 @@
|
|
13
13
|
みたいな記事を書きました。
|
14
14
|
|
15
15
|
Pythonを今後使われるなら、参考になるかも。。。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
修正例:
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
```python
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
print ("あなたの正解数は" + str(input_count1)+ "です")
|
28
|
+
|
29
|
+
return input_count1 ###追加
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
print ("あなたの正解数は" + str(input_count2)+ "です")
|
34
|
+
|
35
|
+
return input_count2 ###追加
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
kansanten1 = 60 * input_count1//fullscore_L ### #をはずす
|
40
|
+
|
41
|
+
```
|