在 Python 中生成介于 0 和 1 之间的随机值

Muhammad Maisam Abbas 2023年1月30日
  1. 在 Python 中使用 random.randint() 函数生成介于 0 和 1 之间的随机值
  2. 在 Python 中使用 random.random() 函数生成介于 0 和 1 之间的随机值
  3. 在 Python 中使用 random.uniform() 函数生成介于 0 和 1 之间的随机值
在 Python 中生成介于 0 和 1 之间的随机值

本教程将介绍在 Python 中生成介于 0 和 1 之间的随机值的方法。

在 Python 中使用 random.randint() 函数生成介于 0 和 1 之间的随机值

random 模块提供了许多在 Python 中生成随机数的方法。random.randint(x, y) 函数生成一个介于 xy 之间的随机整数。以下代码示例向我们展示了如何使用 Python 中的 random.randint() 函数生成 0 到 1 之间的随机整数。

import random

for i in range(10):
    print(random.randint(0, 1))

输出:

0
1
1
0
1
1
1
0
0
0

在上面的代码中,我们使用 Python 中的 random.randint() 函数生成介于 0 和 1 之间的随机整数值。这种方法在技术上是随机的,但是大多数情况下它的输出为 0

在 Python 中使用 random.random() 函数生成介于 0 和 1 之间的随机值

random 模块提供了另一种用于生成随机数的方法,称为 random.random() 函数。random.random() 函数用于生成 0 到 1 之间的随机浮点数。以下代码示例向我们展示了如何使用 Python 中的 random.random() 函数生成 0 到 1 之间的随机浮点数。

import random

for i in range(10):
    print(random.random())

输出:

0.825015043001995
0.9094437659082791
0.33868291714283916
0.5351032318837877
0.15110006300577983
0.35633216995962613
0.6230723865215685
0.35906777048890404
0.48989704057931327
0.5862369192498884

在上面的代码中,我们使用 Python 中的 random.random() 函数生成介于 0 和 1 之间的随机浮点数。如我们所见,输出中没有重复。

在 Python 中使用 random.uniform() 函数生成介于 0 和 1 之间的随机值

random 模块提供的另一种生成随机浮点数的方法是 random.uniform() 函数。random.uniform(x, y) 函数生成 xy 之间的随机浮点数。以下代码示例向我们展示了如何使用 Python 中的 random.uniform() 函数生成介于 0 和 1 之间的随机浮点数。

import random

for i in range(10):
    print(random.uniform(0, 1))

输出:

0.013945221722152179
0.5017124648286838
0.877814513722702
0.2272981359909486
0.1752587757552797
0.8360499141768403
0.186039641814587
0.4962755696082156
0.5530128798215038
0.06186876002931674

在上面的代码中,我们使用 Python 中的 random.uniform() 函数生成介于 0 和 1 之间的随机浮点数。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Python Number