Skip to main content
🔒 Preview mode. The first 15 Foundations lessons are free; this one is Pro. Start a 7-day trial to unlock the editor, AI hints and the rest of the curriculum. Card required, cancel any time in Dashboard.Start 7-day trial →
← CoursesPython FoundationsModule 2 · Data structuresGuess the numbermission21 / 174
+200 XP
Task
📝 **🏆 Final mission of module 1: Guess the number** 📋 **Steps:** 1. Already given: `secret = 7`, `guess = 7` 2. Use `if/elif/else`: - `guess == secret` → `print("Correct!")` - `guess < secret` → `print("Bigger!")` - else → `print("Smaller!")` 💡 **Similar example:** ```python age = 18 if age == 18: print("Just adult") elif age < 18: print("Wait") else: print("Adult") ``` 🎯 **Expected output:** `Correct!`
✏️ Write your code here
🐍
Loading Python...
One-time download (~1 MB). Then it runs instantly.
📊 Result
Press Run to see result...

💬 Discussion

Be the first to ask a question or share a tip.
Sign in to join the discussion. Reading is free.
Loading discussion…