仅获取小数点后 1 位

发布于 2024-09-12 12:55:59 字数 55 浏览 3 评论 0原文

如何将 45.34531 转换为 45.3

How do I convert 45.34531 to 45.3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

翻身的咸鱼 2024-09-19 12:55:59

您是否试图仅用一位数字来表示它:

print("{:.1f}".format(number)) # Python3
print "%.1f" % number          # Python2

或者实际上四舍五入其他小数位?

round(number,1)

或者甚至严格向下舍入?

math.floor(number*10)/10

Are you trying to represent it with only one digit:

print("{:.1f}".format(number)) # Python3
print "%.1f" % number          # Python2

or actually round off the other decimal places?

round(number,1)

or even round strictly down?

math.floor(number*10)/10
ら栖息 2024-09-19 12:55:59
>>> "{:.1f}".format(45.34531)
'45.3'

或者使用内置回合:

>>> round(45.34531, 1)
45.299999999999997
>>> "{:.1f}".format(45.34531)
'45.3'

Or use the builtin round:

>>> round(45.34531, 1)
45.299999999999997
棒棒糖 2024-09-19 12:55:59
round(number, 1)
round(number, 1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文