回答編集履歴
1
intへの変換を追加
test
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
Pythonではインデントでifなどの制御ブロックを判別します。
|
2
2
|
|
3
3
|
ifのあとにインデントを入れてください。
|
4
|
+
|
5
|
+
また、比較対象をintに変換してください。
|
4
6
|
|
5
7
|
|
6
8
|
|
@@ -12,7 +14,7 @@
|
|
12
14
|
|
13
15
|
print("あなたの点数は"+random.choice(score)+"点です。")
|
14
16
|
|
15
|
-
if random.choice(score)>=80:
|
17
|
+
if int(random.choice(score)) >=80:
|
16
18
|
|
17
19
|
print("合格です。"+"\n"+"次も頑張ろう。")
|
18
20
|
|