Skip to content

Instantly share code, notes, and snippets.

@HoweChen
Created April 12, 2019 05:31
Show Gist options
  • Save HoweChen/6bdbdabf7403466f0ea052ea053bfc54 to your computer and use it in GitHub Desktop.
Save HoweChen/6bdbdabf7403466f0ea052ea053bfc54 to your computer and use it in GitHub Desktop.
[Python如何四舍五入]#Python
from decimal import Decimal, ROUND_HALF_UP
origin_num = Decimal('11.245')
answer_num = origin_num.quantize(Decimal('0.00'), rounding=ROUND_HALF_UP)
print(answer_num)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment