Home Module 4: Python Basics Lesson 4.1
Module 4: Python Basics

What is Python? A language computers understand

⏱ 20 min learn Ages 9 & 12
💡 The big idea

Python reads almost like English — which makes it perfect for beginners. It's also one of the most powerful languages in the world, used by NASA, Netflix, Instagram, and the teams that build AI systems like Claude.

📖
The recipe analogy
"Making a pizza has a recipe with steps in a specific order. Python is like writing a recipe a computer can follow. Each line is one instruction. The computer follows them exactly — in perfect order, no skipping, no guessing."
Why Python first? It reads almost like English — "print("Hello")" literally means "print the word Hello." Python is used by NASA, Netflix, Instagram, and the people who build AI systems like Claude.
🚀
Your first Python program

Try this in replit.com (free, no install needed):

print("Hello, World!") print("I am learning Python!") print(2 + 3) # Python can do maths too!
Write a fun Python program that prints 10 interesting facts about space. Add a comment explaining what each print() line does. Keep it simple for a 10-year-old.
🗣 Discuss: What does # do in the code? What happens if you change a number in the maths line? Try it!
📝
Lesson quiz — test yourself!
Wrap-up discussion questions
1️⃣ What is the "recipe" analogy for Python — and why is it accurate?
2️⃣ What does print() do? Write an example.
3️⃣ What would you most like to build with Python?
📍 Lesson 4.1 — Python Basics
← Previous Next →