Created
June 4, 2020 22:22
-
-
Save Snarp/c771a8b957fe6446e9fb0c86a4d4e4d8 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
# percent(55, 556) | |
# => "09.89%" | |
def progress_as_percentage(i, total) | |
"%05.2f%%" % (100.0*i/total) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment