Who this level is for
Kids who have never written code, or anyone who wants a gentler first path than the main Python tutorial.
Ages 7–10. That is a guide, not a gate. If the examples feel slow, open Intermediate. If they feel hard, stay here and run each sample in thePython editor.
What you will do
- Make the computer say hello
- Store a name in a box (a variable)
- Ask a question and print the answer
- Choose a path with if / else
- Finish two tiny projects: Mad Libs and a number guess
Start with What Is Coding, then follow Next at the bottom of each page.
Real life — learn it faster
Each chapter ties the idea to something you already do: a backpack, a snack stall, a rainy window. Read the scene, run the code, then the syntax sticks.
Try this now
Copy into Try Python. Change the words. Run it.
Basic sample
print("Hello, explorer!")
name = "Sam"
print("Hi, " + name)Chapter list
Twelve short chapters. Finish the two projects before Intermediate.
- 💡 What Is CodingCode is instructions a computer follows in order. You write them. Python runs them.Code · Python · Order
- 👋 Hello, WorldYour first program: print a line. Change the words. Run it again.print · Run · Editor
- 📣 Print and Talkprint() shows text. Quotes wrap words. You can print more than one line.print · Quotes · Lines
- 🔢 Numbers and MathAdd, subtract, multiply, divide. Python does the arithmetic. You choose the numbers.+ · - · *
- 🔤 Words and StringsA string is text in quotes. You can join words with + and print a sentence.Strings · Join · Quotes
- 📦 Boxes (Variables)A variable is a named box. Put a name or a number in it. Use it later.Names · Store · Reuse
- ❓ Ask a Questioninput() waits for a typed answer. Save it. Print it back.input · Ask · Reply
- 🔀 Yes or No (If)if and else pick a path. Compare two values. Print a different message.if · else · Compare
- 🔁 Repeat (Loops)A for loop repeats work. Count. Print a pattern. Stop when you are done.for · range · Repeat
- ⭐ Draw with CodePrint stars, triangles, and rows. Loops make pictures out of text.Patterns · Stars · Rows
- 📝 Project: Mad LibsAsk for words, then fill a silly story. print, input, and strings together.input · Story · Project
- 🎯 Project: Number GuessThe computer picks a number. You guess. if tells you too high or too low.if · Guess · Project
After this level
After the last chapter, continue to Intermediate. Same editor. Bigger ideas.
Back to Kids home if you want to switch levels.