Skip to content

Instantly share code, notes, and snippets.

@lazybios
Last active August 29, 2015 14:14
Show Gist options
  • Save lazybios/56db083c41155b90e3ed to your computer and use it in GitHub Desktop.
Save lazybios/56db083c41155b90e3ed to your computer and use it in GitHub Desktop.
format value
# 保留小数点后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