🏆 You did it!
You finished Project 1 — Hello World! 🎉
What you built
A fun interactive Python program with:
- A welcome message and the world emoji
- A big multiplication (
111,111,111 × 111,111,111) - The current date and time
- A custom dice the player picks the sides for
- One 🔥 emoji for every point on the roll
🧠 What you learned
print()— show words on the screen- Variables — boxes that hold things
- f-strings — sentences with variables inside
- Math operators (
+,-,*,/,**) importand modules — bringing in extra tools (datetime,random)- Functions with
def— naming a chunk of code randint— picking a random numberinput()— getting an answer from the playerint()— changing text to a number (type casting)- String multiplication (
emoji * number)
That’s a LOT! 🔥
🚀 Next project
In Project 2 — Target Practice, you’ll draw an archery board
on screen and make a game where you score points by hitting it
with arrows. New thing you’ll meet: if / elif / else —
how Python makes decisions.
Adapted from Raspberry Pi Foundation — Hello World under CC BY-SA 4.0.