AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
balance.py
根目录
/
benchmarks
/
verification-stress
/
tasks
/
vs-pos-ledgerbal
/
workdir
/
balance.py
1
import parse
2
3
def balance(lines):
4
total = 0.0
5
for line in lines:
6
kind, amount = parse.parse_line(line)
7
if kind == "deposit":
8
total += amount
9
elif kind == "withdraw":
10
total += amount
11
return total
12
12 lines
PYTHON