假設你對在python生成隨機數與random模組中最經常使用的幾個函式的關係與不懂之處。以下的文章就是對python生成隨機數與random模組中最經常使用的幾個函式的關係,希望你會有所收穫,以下就是這篇文章的介紹。
random.random()用於生成
用於生成乙個指定範圍內的隨機符點數,兩個引數當中乙個是上限。乙個是下限。
假設a > b,則生成隨機數1
n: a <
=
n <
=
b。
假設 a
12
3456
print
random.uniform(
10
,
20
)
print
random.uniform(
20
,
10
)
#----
#18.7356606526
#12.5798298022
random.randint
用於生成乙個指定範圍內的整數。當中引數a是下限,引數b是上限。python生成隨機數 12
3print
random.randint(
12
,
20
)
#生成的隨機數n: 12 <= n <= 20
print
random.randint(
20
,
20
)
#結果永遠是20
#print random.randint(20, 10) #該語句是錯誤的。
下限必須小於上限。
random.randrange
從指定範圍內。按指定基數遞增的集合中 ,這篇文章就是對python生成隨機數的應用程式的部分介紹。
隨機整數:
>>> import random
>>> random.randint(0,99)
21隨機選取0到100間的偶數:
>>> import random
>>> random.randrange(0, 101, 2)
42隨機浮點數:
>>> import random
>>> random.random()
0.85415370477785668
>>> random.uniform(1, 10)
5.4221167969800881
隨機字元:
>>> import random
>>> random.choice('abcdefg%^*f')
'd'多個字元中選取特定數量的字元:
>>> import random
random.sample('abcdefghij',3)
['a', 'd', 'b']
多個字元中選取特定數量的字元組成新字串:
>>> import random
>>> import string
>>> string.join(random.sample(['a','b','c','d','e','f','g','h','i','j'], 3)).r
eplace(" ","")
'fih'
洗牌:>>> import random
>>> items = [1, 2, 3, 4, 5, 6]
>>> random.shuffle(items)
>>> items
[3, 2, 5, 6, 4, 1]
Python隨機數生成方法
1.random.seed int 1 2 3 4 5 6 7 8 9 10 random.seed 10 printrandom.random 0.57140259469 random.seed 10 printrandom.random 0.57140259469 同乙個種子值,產生的隨機數相同...
Python隨機數生成方法
假設你對在python生成隨機數與random模組中最經常使用的幾個函式的關係與不懂之處。以下的文章就是對python生成隨機數與random模組中最經常使用的幾個函式的關係,希望你會有所收穫,以下就是這篇文章的介紹。random.random 用於生成 用於生成乙個指定範圍內的隨機符點數,兩個引數...
C 隨機數生成方法
一 c 中不能使用random 函式 c 中常用rand 函式生成隨機數,但嚴格意義上來講生成的只是偽隨機數 pseudo random integral number 生成隨機數時需要我們指定乙個種子,如果在程式內迴圈,那麼下一次生成隨機數時呼叫上一次的結果作為種子。但如果分兩次執行程式,那麼由於...