Warm-up
Setting the stage
Start by welcoming the player and making a score box that begins at zero.
1print("Welcome to the Math Quiz!")2score = 0
Plain-English Explanation
Every game needs a starting point. This line tells the computer, 'Get ready, we are keeping track now.'
Deep Dive: Variables are memory boxes
When you write score = 0, Python builds a little storage spot named score. Later, you can open that box, change the number, and print the new result.