Python 中的 random.uniform( ) 函数教程与实例解析

random.uniform( ) 函数教程与实例解析

1. uniform( ) 函数说明

random.uniform(x, y) 方法将随机生成一个实数,它在 [x,y] 范围内。

2. uniform( ) 的语法与参数

2.1 语法

# _*_ coding: utf-8 _*_
import random
random.uniform(x, y)

# _*_ coding: utf-8 _*_
from random import uniform
uniform(x, y)

提示:uniform 包含在random库中,需要使用时需导入random库。

2.2 参数

  • x -- 随机数的最小值,包含该值。
  • y -- 随机数的最大值,不包含该值。
  • 返回一个浮点数

3. 实例

例程:

# _*_ 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

你可能感兴趣的:(Python,数据处理与分析(数据挖掘))