Skip to main content
← CoursesPython FoundationsModule 4 · Object-oriented programmingFind out the maximum from the listscenario58 / 170
💬 Discuss🧪 Playground+100 XP
Task
📝 **Task:** Scores list `scores = [78, 92, 65, 88, 95, 71]`. Print the highest. 📋 Use `max(scores)` and `print`. 💡 **Similar example (prices):** ```python prices = [100, 250, 80, 150] print(min(prices)) # 80 print(max(prices)) # 250 ``` 🎯 **Expected output:** `95`

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…