标签: python syntax
我在Python中的elif代码行中不断收到语法错误。
elif
我认为这与缩进有关,但不确定。
这是我的代码:
答案 0 :(得分:1)
问题出在这条线上:
elif score2>score 1
score
1
score1
所以这一行应该是:
elif score2 > score1: