Lesson 12 of 12

🏆 Final Project: Quiz Game!

🎯 Grades 6–8 ⏱ ~35 minutes 💚 Intermediate

What You'll Learn

  • Combine all 11 lessons into one complete Python project
  • Build a multi-question quiz with scoring and feedback
  • Use lists, loops, functions, and conditionals together
Quick Check

1. Which Python concept lets you reuse a block of code by name?

AA variable
BA function
CA list

2. If score = 7 and total = 10, what is (score / total) * 100?

A70.0
B17
C0.7

3. What does .lower() do to a string?

AReverses it
BConverts all letters to lowercase
CRemoves spaces

4. Which data structure is best for storing a list of questions?

AA single variable
BA boolean
CA list (or list of tuples)