My code is:
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 not a valid answer."
and error:
line 97 else: ^ IndentationError: expected an indented block
I have absolutely no idea why I am getting this error, but maybe you guys can help me. There are many if / else / elif arguments that can confuse me. Any help is much appreciated, thanks!
EDIT: Adding a "pass" or code to an elif statement simply wraps the same error on line 95.
source share