AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
invoice.py
根目录
/
benchmarks
/
e2e
/
tasks
/
nosol-underspecified-rounding
/
workdir
/
invoice.py
1
def total(lines):
2
"""lines is a list of (unit_price, quantity) in dollars."""
3
return round(sum(p * q for p, q in lines), 2)
4
4 lines
PYTHON