gpt4 book ai didi

python - 仅获得小数点后一位

转载 作者:IT老高 更新时间:2023-10-28 21:33:50 24 4
gpt4 key购买 nike

如何将 45.34531 转换为 45.3

最佳答案

你是不是想用一个数字来表示它:

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

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

round(number,1)

甚至严格向下取整?

math.floor(number*10)/10

关于python - 仅获得小数点后一位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3400965/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com