私はこのゲームでスコアを維持しようとしているので、スコア変数を設定し、回答が正しく回答されるたびにスコアに + 1 ポイントが追加され、不正解の場合はポイントが差し引かれます。最後にスコアを出力しても、まだ 0 のままです。
score = 0
q1answer = ("metallica", "slayer", "megadeth", "anthrax")
answerinput = str(input("name one of the 'Big Four' metal bands'"))
if answerinput.lower() in q1answer:
print ("You got the right answer!")
score + 1
else:
print ("That is the wrong answer...")
score - 1
print (score)