Last active
August 29, 2015 14:13
-
-
Save gartenfeld/ad1f8e7d98edbac2f5a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> 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