Skip to main content
← CoursesPython FoundationsModule 2 · Data structuresGuess the numbermission20 / 170
💬 Discuss🧪 Playground+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!`

Keep going

✏️ Write your code here
🐍
Loading Python...
First visit only — ~5-10s. Stays cached afterward.
📊 Result
Press Run to see result...
📣 Help someone learn PythonShare this lesson with a friend — the first 15 are free, no signup.Tweet

💬 Discussion

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