当前位置 : 主页 > 编程语言 > python >

详解Python random.uniform(获取均匀分布的随机数)函数的使用方法

来源:互联网 收集:自由互联 发布时间:2023-07-29
random.uniform函数的作用 random.uniform函数是Python中的一个随机数生成函数,其作用是生成指定范围内的随机浮点数。 random.uniform函数的基本使用方法 random.uniform函数的语法格式如下: rand
random.uniform函数的作用

random.uniform函数是Python中的一个随机数生成函数,其作用是生成指定范围内的随机浮点数。

random.uniform函数的基本使用方法

random.uniform函数的语法格式如下:

random.uniform(a, b)

其中,a和b为函数的两个参数,表示生成的随机数的范围为[a, b],且a<=b。

随机数生成函数使用前,需要先导入random模块:

import random
random.uniform函数的实例说明 生成一个指定范围内的随机浮点数

下面的示例演示了如何生成一个指定范围内的随机浮点数:

import random

# 生成一个[0, 1]之间的随机浮点数
x = random.uniform(0, 1)
print(x)

# 生成一个[-5, 5]之间的随机浮点数
y = random.uniform(-5, 5)
print(y)

# 生成一个[2.5, 3.5]之间的随机浮点数
z = random.uniform(2.5, 3.5)
print(z)

输出结果:

0.6568235460790767
-3.4721786852584976
3.342365080112242
生成一个随机浮点数序列

下面的示例演示了如何生成一个随机浮点数序列:

import random

# 生成10个[0, 1]之间的随机浮点数
x = [random.uniform(0, 1) for i in range(10)]
print(x)

# 生成10个[-5, 5]之间的随机浮点数
y = [random.uniform(-5, 5) for i in range(10)]
print(y)

# 生成10个[2.5, 3.5]之间的随机浮点数
z = [random.uniform(2.5, 3.5) for i in range(10)]
print(z)

输出结果:

自由互联热门推荐:PDF电子发票识别软件,一键识别电子发票并导入到Excel中!10大顶级数据挖掘软件!人工智能的十大作用!

[0.5140407828368648, 0.16434548644370255, 0.6510121875327567, 0.00872585585089984, 0.37170726012286703, 0.638444882668388, 0.03241666721855234, 0.6495607643029709, 0.9996253810685083, 0.10443336219182835]
[-1.7195660205452906, 1.2298747459756838, 2.7482914439622776, -0.7213064182810002, -3.6515793219477066, 0.22737824759785223, -4.901593430091576, -4.473204970526133, 0.84404442223093, 2.783513549105133]
[2.934605766319301, 3.146498798017183, 2.5446951337447007, 2.939609222534947, 2.5774752535647475, 2.5279924937656745, 3.18747198427118, 3.1759102870217377, 3.1099638710727633, 2.62577616005113]

通过以上两个实例说明,可以清晰地了解random.uniform函数的作用与使用方法。

网友评论