Python 中random 庫的詳細使用

2022-09-25 13:27:11 字數 4412 閱讀 8171

random庫主要包含返回隨機數的函式,主要用於普通的隨機數生成的程式,如果對隨機性有特殊要求,比如加密等,可以用函式os.urandom()或者random模組內部的systemrandom類,這些可以讓資料接近真正的隨機性。

random.randrange語法格式

兩種寫法

random.randrange(stop)

random.randrange(start, stop[, step])

實際栗子

# 栗子一

for i in range(5):

print(random.randrange(20))

####174

774# 栗子二

for i in range(5

print(random.randrange(10, 20))

####

1314

1117

17# 栗子三

for i in range(5):

print(random.randrange(10, 20, 2))

####

1212

1414

10random.www.cppcns.comrandint

語法格式

random.randint(a, b)

實際栗子

for 程式設計客棧i in range(5):

print(random.randint(0,20))

####

1920116

3a、b 都可以取得到哦

random.random()語法格式

返回 [0.0, 1.0) 範圍內的下乙個隨機浮點數

random.random()

實際栗子

# 栗子一

for i in range(5):

print(random.random())

####

0.9829492243165335

0.43473506430105724

0.5198709187243076

0.6437884305820736

0.7216771961168909

# 栗子二

for i in range(5):

print(math.ceil(random.random() * 1000))

####

77232162

127random.uniform(a, b)

語法格式

random.uniform(a, b)

實際栗子

# 栗子一

for i in range(5):

print(random.uniform(1, 10))

####

2.6200262089754593

9.220506911469235

3.0206896704014783

9.670905330339174

1.170694187192196

# 栗子二

for i in range(5):

print(random.uniform(8, 2))

####

2.696842757954265

6.058794935110275

7.567631220015144

2.2057698202258074

4.454083664106361

random.choice

語法格式

random.choice(seq)

實際栗子

# 數字陣列

print(random.choice([1, 2, 3, 4, 5]))

# 字母陣列

print(random.choice(["a", "b", "c"]))

# 字母元組

print(random.choice(("a", "b", "c")))

# 字串

print(random.choice("abcdef"))

# string 模組返回的大小寫字母字串

print(random.choice(string.ascii_letters))

# string 模組返回的數字字串

print(random.choice(string.digits))

# string 模組返回的數字字串+大小寫字母字串

print(random.choice(string.digits + string.ascii_uppercase))

####5c

cel2

f語法格式

random.choices(population, weights=none, *, cum_weights=none, k=1)

看的迷迷糊糊啥意思。。?來看栗子。。

不帶引數的栗子

a = [1,2,3,4,5]

print(random.choices(a,k=5))

# 結果

[5, 5, 3, 1, 5]

可以重複取元素

帶 weight 的栗子一

a = [1, 2, 3, 4, 5]

print(random.choices(a, weights=[0, 0, 1, 0, 0], k=5))

# 結果

[3,3,3,3,3]

帶 weight 的栗子二

a = [1, 2, 3, 4, 5]

print(random.choices(a, weights=[0, 2, 1, 0, 0], k=5))

# 結果

[2, 2, 2, 2, 3]

2 的權重更大,所以取到它的概率更高

帶 cum_weights 的栗子

a = [1, 2, 3, 4, 5]

print(random.choices(a, cum_weights=[1, 1, 1, 1, 1], k=5))

print(random.choices(a, cum_weights=[1, 4, 4, 4, 4], k=5))

print(random.choices(a, cum_weights=[1, 2, 3, 4, 5], k=5))

# 結果

[1, 1, 1, 1, 1]

[2, 2, 1, 2, 1]

[5, 5, 1, 4, 2]

是不是看不懂?我也看不懂,但其實就是普通權重相加而已

cum_weights=[1, 1, 1, 1, 1]

cum_weights=[1, 4, 4, 4, 4]

random.shuffle

語法格式

將序列 x 隨機打亂位置

只能是列表,元組、字串會報錯哦

random 暫時沒找到有什麼用,可以忽略

random.shuffle(x[, random])

實際栗子

# 數字陣列

a = [1, 2, 3, 4, 5]

random.shuffle(a)

print(a)

# 字母陣列

b = ["a", "b", "c"]

random.shuffle(b)

print(b)

####

[3, 5, 2, 4, 1]

['a', 'c', 'b']

random.sample

語法格式

random.sample(population, k)

全都是 k=3

# 數字陣列

print(random.sample([1, 2, 3, 4, 5], 3))

# 字母陣列

print(random.sample(["a", "b", "c"], 3))

# 字母元組

print(random.sample(("a", "b", "c"), 3))

# 字串

print(random.sample("abcdef", 3))

# string 模組返回的大小寫字母字串

print(random.sample(string.ascii_letters, 3))

# string 模組返回的數字字串

print(random.sample(string.digits, 3))

# stwww.cppcns.comring 模組返回的數字字串+大小寫字母字串

print(random.sample(string.digits + string.ascii_uppercase, 3))

####

[2, 1, 3]

['b', 'c', 'a']

['a', 'b', 'c']

['a', 'f', 'b']

['m', 'w', 'w']

['7', '1', '5']

['r', '8', 'o']

Python中random庫的使用

random庫簡介 random庫是python中產生隨機數的乙個重要庫 使用說明如下 random庫是使用隨機數的python標準庫,用於生成偽隨機數 梅森旋轉方法 基本隨機數函式 seed random 其他不太常用 eg.random.seed 10 產生種子10對應的序列 給了種子seed後...

python中random庫的使用

基本隨機函式 計算機產生隨機數是需要隨機數種子的,例如 給定乙個隨機數種子,就能利用梅森旋轉演算法產生一系列隨機序列 每乙個數都是隨機數,只要隨機種子相同,產生的隨機數和數之間的關係都是確定的 隨機種子確定了隨機序列的產生 基本隨機函式 seed 初始化隨機數種子 random 生成乙個 0.0,1...

Python中math庫和random庫

math庫 random庫 數學庫exp x e的x次冪 degrees x 將弧度值轉換成角度 radians x 將角度值轉換成弧度 sin x 正弦函式 cos x 余弦函式 tan x 正切函式 asin x 反正弦函式 acos x fanyuxian函式 atan x 反正切函式 隨機庫...