Skip to content

Preview

A very small piece of it

This is the lesson shell from the early build, with the real editor chrome and three real lessons in it. It’s a tease, not the product — but nothing here is a mockup either.

showing
3 lessons of roughly 90
build
Early — expect changes
runs
Yes, actually

Lesson four of the Python track. You’ve seen a list. Now you make the computer do something with every item in it, which is the moment the whole thing clicks for most people.

Task

Print every chore in the list, then mark it done.

lesson-04.py
1# lesson 04 · loops
2chores = ["dishes", "bins", "laundry"]
3
4for chore in chores:
5 print(chore, "→ done")
6
7print("that's the lot")

Output

waiting for you to run it…
7 linesnext: while loops

Being honest

What’s missing from this preview

Four things you’d notice immediately if we handed you the real thing today. They’re the reason we haven’t.

  • No accountsSo nothing saves yet. Refresh and it’s gone.
  • No error teachingIt runs your code. It doesn’t yet explain why it broke.
  • No mobile editorTyping code on a phone keyboard is its own project.
  • No hintsThe bit where it notices you’re stuck is still on paper.

Want the rest of it?

Join the waitlist and you’ll get one email the day the other 87 lessons open.

Join the waitlist