random.uniform(x, y) 方法将随机生成一个实数,它在 [x,y] 范围内。
# _*_ coding: utf-8 _*_
import random
random.uniform(x, y)
或
# _*_ coding: utf-8 _*_
from random import uniform
uniform(x, y)
提示:uniform 包含在random库中,需要使用时需导入random库。
例程:
# _*_ coding: utf-8 _*_
import random
print("uniform(1 , 6) 的随机返回值为 : ", random.uniform(1 , 6))
print("uniform(10, 16) 的随机返回值为 : ", random.uniform(10, 16))
运行结果:
#uniform(1 , 6) 的随机返回值为 : 3.001161523486847
#uniform(10, 16) 的随机返回值为 : 13.70906147017741