Created
October 21, 2022 15:42
-
-
Save mh0w/b0849129b9c9d6986a19b066a1641082 to your computer and use it in GitHub Desktop.
print formatted float (limiting decimal points)
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
f = 123.456789 | |
print("%.2f" % f) # 123.46 | |
print("{0:.3f}".format(f)) # 123.467 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment