I'm currently trying to make an aesthetic personality quiz type thing in repl.it using python. I have 4 different variables that all start at 0, and depending on the user input, the scores will go up by one. I'm having some trouble making it to where the code will add to all of the variables.
At the moment, I can add 1 to one of the scores, but none of the others. I was wondering how I would go about doing this? Here is my current code:
#aesthetics
dark = 0
basic = 0
fantasy = 0
academia = 0
#inputs
if input("""
Choose a color scheme!
a Black, Grey, Purple
b Blue, Pink, White
c Green, Grey, Yellow
d Brown, Red, Orange
>> """) == "a":
dark += 1
elif input == "b":
basic += 1
If I input "a" and ask it to print the value of dark, it will output "1". However, if I input "b" and ask it to print the value of basic, it will output "0".