Skip to content

Instantly share code, notes, and snippets.

@edgabaldi
Last active August 29, 2015 14:23
Show Gist options
  • Save edgabaldi/ccbbeb52f371f512ea14 to your computer and use it in GitHub Desktop.
Save edgabaldi/ccbbeb52f371f512ea14 to your computer and use it in GitHub Desktop.
Round Decimal
>>> from decimal import Decimal
>>> Decimal('2.14999').quantize(Decimal('0.00'))
Decimal('2.15')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment