在 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