Skip to main content
← CoursesFastAPI ProductionModule 1 · FastAPI BasicsSQLAlchemy 2.0 async — the new normalpredict6 / 101
💬 Discuss🧪 Playground+100 XP
Task
📝 **Predict:** ```python items = [{"id": 1, "total": 10}, {"id": 2, "total": 20}, {"id": 3, "total": 30}] total_revenue = sum(item["total"] for item in items) print(total_revenue) ```

Keep going

🔮 Predict the output

Read the code carefully

items = [{"id": 1, "total": 10}, {"id": 2, "total": 20}, {"id": 3, "total": 30}]
total_revenue = sum(item["total"] for item in items)
print(total_revenue)

What will the program print? Write here:

📣 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…