Lesson Complete!

Your First Quiz Question

What you built

Your quiz now displays a title, a question, and four answer options:

=== Python Quiz ===

What is the type of the value 3.14?

  1) int
  2) str
  3) float
  4) bool

What you learned

  • print() displays text on the screen
  • Strings are text wrapped in quotes ("Hello")
  • print() with no arguments prints a blank line for spacing
  • Comments (#) are notes that Python ignores

Next up

The quiz shows a question, but it can't accept an answer yet. In the next lesson, you will store the correct answer in a variable, ask the player to type their response, and tell them if they got it right.