I've got this quiz set up with part of the code below and the quiz works fine and there's a score function that give +2 if correct and -2 if wrong but I wanted to also give -1 if it was left blank. How would I be able to do this?
for q in questions.keys():
    user_answer = input(q)
    if questions.get(q) == str(user_answer):
        score += 2
    else:
        score -=2
 
    