CHAPTER 1

The Magic Language πŸͺ„

Welcome, Apprentice Wizard! πŸ§™β€β™‚οΈ

Imagine you have a powerful genie named "Computer". This genie can do anythingβ€”math, games, drawingβ€”but it only speaks one language: Python.

Your keyboard is your wand. To make the genie do something, you have to cast a spell (write code).

✨ The First Spell: Print

When we want the computer to speak, we use the print() command.

print("Hello World")

Whatever you put inside the quotes "" inside the parentheses () will appear on the screen!

🚫 Warning: If you forget the quotes, the genie gets confused!

YOUR QUESTS βš”οΈ

Quest 1: The First Greeting

Type this exactly in the box on the right and hit RUN:

print("Hello World")
Waiting for you to run code...

Quest 2: Identity Spell

Make the computer say your name! Replace [Name] with your actual name.

print("I am [Name]")
Locked πŸ”’

Quest 3: Strange Sounds

Make the computer say exactly: Bloop Bleep!

Locked πŸ”’
❓

Wizard's Exam πŸ“œ

1. What command shows text on the screen?

2. Python is...

⌨️ EDITOR
Waiting for code...