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 →
← CoursesFastAPI ProductionModule 1 · FastAPI BasicsSQLAlchemy 2.0 async — the new normalpredict6 / 105
+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) ```
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:

💬 Discussion

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