Python random.uniform() 函数
Python random.uniform() 函数随机生成下一个浮点数,值在 [x, y) 范围内
导入模块
import random
语法
random.uniform(x, y)
参数
参数 | 说明 |
---|---|
x | 随机数的最小值,包含该值 |
y | 随机数的最大值,不包含该值 |
返回值
返回一个浮点数
范例
下面的代码使用 random.uniform() 随机返回区间内的一个浮点数
>>> import random >>> random.uniform(1,50) 15.137599235681552 >>> random.uniform(0,1) 0.6924227459953175