gpt4 book ai didi

python - 如何在 Python 中使用 step 获取随机 float

转载 作者:太空狗 更新时间:2023-10-30 01:02:59 26 4
gpt4 key购买 nike

还在纠结Python中有没有一个函数可以通过step得到一个随机的float值?类似于 randrange(start, stop, step) 但用于 float 。

最佳答案

import random

def randrange_float(start, stop, step):
return random.randint(0, int((stop - start) / step)) * step + start

randrange_float(2.1, 4.2, 0.3) # returns 2.4

关于python - 如何在 Python 中使用 step 获取随机 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11949179/

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