CHAPTER 3

The Secret Numbers 🔢

Your computer genie is the fastest calculator in the universe! 🚀 It can solve huge math problems in a micro-second.

In Python, we deal with Integers (whole numbers).

⚡ No Quotes Needed!

Words need quotes "Hello", but Numbers do not!

age = 10
✅ Correct (Number)
age = "10"
❌ Word (String)

Math Symbols:

  • + Plus
  • - Minus
  • * Multiply (The Star!)
  • / Divide

YOUR QUESTS ⚔️

Quest 1: Super Calculator

Calculate how many seconds are in an hour (60 seconds * 60 minutes). Use print!

print(60 * 60)
Waiting for you to run code...

Quest 2: The Apple Mystery

You have 10 apples. You eat 4. How many are left?
Use variables!

apples = 10
eaten = 4
print(apples - eaten)
Locked 🔒

Wizard's Exam 📜

1. Which symbol is used for multiplication?

2. Do numbers need quotes?

⌨️ EDITOR
Waiting for code...