Last active
August 29, 2015 14:14
-
-
Save lazybios/56db083c41155b90e3ed to your computer and use it in GitHub Desktop.
format value
This file contains 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
# 保留小数点后n位 | |
# 四舍五入法 | |
val = 13.949999999999999 | |
round(val,2) | |
#=> 13.95 | |
print "%.2f" % a | |
#=> 13.95 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment