AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
money.py
根目录
/
benchmarks
/
e2e
/
tasks
/
context-pressure-forced
/
workdir
/
common
/
money.py
1
def fmt_amount(cents, currency):
2
"""Format cents as a currency string, e.g. 1234 -> '12.34 USD'."""
3
return "%d.%02d %s" % (cents // 100, cents % 100, currency)
4
4 lines
PYTHON