作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Python 3 中,我会
print_me = "Look at this significant figure formatted number: {:.2f}!".format(floating_point_number)
print(print_me)
print_me = f"Look at this significant figure formatted number: {floating_point_number:.2f}!"
print(print_me)
print_me = "Look at this significant figure formatted number: $floating_point_number"
print(print_me)
Look at this significant figure formatted number: 61.61616161616161
@printf
的可能性。宏。
floating_point_number = round(floating_point_number,2)
print_me = "Look at this significant figure formatted number: $floating_point_number"
print(print_me)
最佳答案
除了@niczky12 的回答,您还可以使用Formatting专为这类东西设计的包装!
Pkg.add("Formatting")
using Formatting: printfmt
x = 1.77715
printfmt("I'm long: $x, but I'm alright: {:.2f}", x)
I'm long: 1.77715, but I'm alright: 1.78
关于julia - 在 Julia 中插值时如何格式化字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37031133/
我是一名优秀的程序员,十分优秀!