我的代码是:
90 if needinexam > 100:
91 print "We are sorry, but you are unable to get an A* in this class."
92 else:
93 print "You need " + final + "% in your Unit 3 controlled assessment to get an A*"
94
95 elif unit2Done == "n":
96
97 else:
98 print "Sorry. That's not a valid answer."
错误是:
line 97
else:
^
IndentationError: expected an indented block
我完全不知道为什么会出现此错误,但也许你们可以帮助我。它周围有很多 if/else/elif 语句,这可能会让我感到困惑。非常感谢任何帮助,谢谢!
编辑:在 elif 语句中添加“pass”或代码只会将相同的错误移动到第 95 行。