AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
total.py
根目录
/
benchmarks
/
e2e
/
tasks
/
fleet-parallel-modules
/
workdir
/
billing
/
total.py
1
def order_total(items):
2
"""Sum the order. Each item is {"price": cents, "qty": n}."""
3
return sum(item["price"] for item in items)
4
4 lines
PYTHON