Skip to content

Instantly share code, notes, and snippets.

@ghing
Created February 29, 2016 21:42
Show Gist options
  • Save ghing/758961f101c044523a46 to your computer and use it in GitHub Desktop.
Save ghing/758961f101c044523a46 to your computer and use it in GitHub Desktop.
Truncating floats and formatting
import decimal
'{:.1f}'.format(decimal.Decimal(99.955).quantize(decimal.Decimal('.1'), rounding=decimal.ROUND_DOWN))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment