📜  Python随机 - random()函数

📅  最后修改于: 2022-05-13 01:54:20.289000             🧑  作者: Mango

Python随机 - random()函数

Python random.random()函数生成 0 到 1 之间的随机浮点数。

Python random.random() 方法示例

示例 1: sample()函数的简单实现。

Python3
# Python3 program to demonstrate 
# the use of random() function . 
    
# import random  
from random import random 
    
# Prints random item 
print(random())


Python3
# Python3 program to demonstrate
# the use of random() function . 
  
# import random  
from random import random
   
lst = []
  
for i in range(10):
  lst.append(random())
    
# Prints random items
print(lst)


Python3
import random
  
random.seed(10)
print(random.random())


输出:

0.41941790721207284

示例 2: Python random.random 范围

Python3

# Python3 program to demonstrate
# the use of random() function . 
  
# import random  
from random import random
   
lst = []
  
for i in range(10):
  lst.append(random())
    
# Prints random items
print(lst)

输出:

示例 3: Python random.random() 种子

Python3

import random
  
random.seed(10)
print(random.random())

输出:

0.5714025946899135