Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mh0w/b0849129b9c9d6986a19b066a1641082 to your computer and use it in GitHub Desktop.
Save mh0w/b0849129b9c9d6986a19b066a1641082 to your computer and use it in GitHub Desktop.
print formatted float (limiting decimal points)
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