How do I add a score?
Hello,
I’m a little bit in trouble with that basic project. It’s a simple quiz (about the Rubik’s Cube (-:). I wanted to add a score (if the answer is correct +1, if it’s false -1). But it doesn’t count properly (the score), because it’s in a def statement. But I have no idea how to fix that. Maybe you could help me!? If you want to, you maybe also could give me some tips (improvements) for that code!?
Thanks in advance!
Have a nice day! (-:
HermioneGrange2
You need to add points like this:
score = 0 question = input('ksljafoiwahgsdaf?') question = int(question) if question = True: score += 1 elif question = False: score -= 1 print(score)
It should be points -=1/+=1 not points =-1/=+1. This assigns the variable to either -1 or 1 rather than adding it.