Kids Coding
What's Next
You can read Python. The main tutorial, HTML, and Try Python are the next rooms.
You can read Python now
You have print, variables, if, loops, lists, functions, files, and a first class. That is enough to keep learning by reading real programs.
- Try Python — still the place to run a snippet.
- Python tutorial — the full path, starting at Intro.
- HTML studio — if you liked painting a page.
- Kids home — replay a level if a chapter felt fast.
You already know variables, loops, functions, and classes, and that is the real core of Python. The main tutorial just goes deeper on tools you have already met.
A habit worth keeping
Change one thing. Run it. Read the output. That loop is the skill. The syntax will grow. The loop stays.
Still the first program
print("Still here. Still running.")Real life
Finishing a beginner swimming badge, then looking at the next pool.
You can already swim a length. The main tutorial is the bigger pool. Same water.
Next pool
print("Badge: kids coding")
print("Next: Python intro")
print("Bring: curiosity, not fear")Change one word. Run it. That is how this idea shows up outside the lesson.
Try it
Exercise 1: Print one sentence about the next thing you want to build.
Show solution
print("I want to build a quiz for my class.")