AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
pricing.py
根目录
/
benchmarks
/
e2e
/
tasks
/
bugfix-discount-int
/
workdir
/
pricing.py
1
def discounted(price_cents, percent):
2
"""Price after an integer-percent discount, in cents, rounded down."""
3
return price_cents - price_cents * (percent // 100)
4
4 lines
PYTHON