I'd like to create a variable whose name includes the name kaiylarScore
for example, but the below code doesn't work.
firstName = input("What's your first name? ")
firstName + "Score" = score
I want to make it so that if print(kaiylarScore)
is entered, for example, then if the score
variable was equal to 7, 7 would be outputted. How can I do this?