Python/test.py

19 lines
370 B
Python

# -*- coding: utf-8 -*-
"""
根据现普康票据理赔自动化最小化实现
功能清单
https://liubiren.feishu.cn/docx/WFjTdBpzroUjQvxxrNIcKvGnneh?from=from_copylink
"""
from decimal import Decimal, ROUND_HALF_UP
bill_amount = Decimal("1.2223").quantize(
Decimal("0.00"),
rounding=ROUND_HALF_UP,
)
result = {"票据金额": bill_amount}
print(result)