gpt4 book ai didi

Python 函数四舍五入到最接近的 0.5

转载 作者:行者123 更新时间:2023-12-03 08:12:36 24 4
gpt4 key购买 nike

在Python中如何将数字四舍五入到最接近的0.5。

例如

100.4 将四舍五入为 100.5

100.6 将四舍五入为 100.5

100.9 将四舍五入为 101

最佳答案

Python 的内置 round 函数可用于将数字四舍五入到一定的小数位数。通过将数字乘以 2,四舍五入到小数点后再除以,我们可以将数字四舍五入到最接近的 0.5:

num = 3.46
result = round(num * 2) / 2
print(result) # 3.5

作为一个函数,这是:

def to_nearest_half(num):
return round(num * 2) / 2

该函数还可以推广到任何小数:

def to_nearest(num, decimal):
return round(num / decimal) * decimal

关于Python 函数四舍五入到最接近的 0.5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70367402/

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