Project 1 — Hello World 🌍🌎🌏
Write an interactive Python program that uses emojis and tells you the date — plus a random dice you can roll with any number of sides.
🎯 What you’ll build
By the end of these 16 short steps, your program will:
- Greet the world
- Tell you the current date and time
- Roll a custom dice (you pick the number of sides!)
- Print the dice number with that many 🔥 emojis
🧩 Python you’ll meet
print()— make the computer say something- Variables — boxes that hold things
- f-strings — sentences with variables in them
- Math operators (
+,-,*,/,**) importand modules — bringing in extra tools- Functions (
def) — naming a chunk of code random.randint— picking a random numberinput()— getting an answer from whoever’s playing-
int()— changing text to a number - 🧩 16 steps (each adds 1–2 lines of code)
- ⏱️ About 1 hour total
- 🏆 Type: Explore — lots of help; just follow the steps
Adapted from Raspberry Pi Foundation — Hello World under CC BY-SA 4.0.