Skip to content

Instantly share code, notes, and snippets.

@tomajask
Created April 24, 2015 08:24
Show Gist options
  • Save tomajask/245c9dc7d60875f69718 to your computer and use it in GitHub Desktop.
Save tomajask/245c9dc7d60875f69718 to your computer and use it in GitHub Desktop.
sample gist
float = 123.45678
"%.4f" % float
# => "123.4568"
# or you can write it in a little bit different way
sprintf "%.4f", float
# => "123.4568"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment