Skip to content

Instantly share code, notes, and snippets.

@gartenfeld
Last active August 29, 2015 14:13
Show Gist options
  • Save gartenfeld/ad1f8e7d98edbac2f5a7 to your computer and use it in GitHub Desktop.
Save gartenfeld/ad1f8e7d98edbac2f5a7 to your computer and use it in GitHub Desktop.
>>> a=13.946
>>> print(a)
13.946
>>> print("%.2f" % a) # It seems just this will do.
13.95
>>> round(a,2)
13.949999999999999
>>> print("%.2f" % round(a,2))
13.95
>>> print("{0:.2f}".format(a))
13.95
>>> print("{0:.2f}".format(round(a,2)))
13.95
>>> print("{0:.15f}".format(round(a,2)))
13.949999999999999
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment