若是你對在Python生成隨機數與random模塊中最經常使用的幾個函數的關係與不懂之處,下面的文章就是對Python生成隨機數與random模塊中最經常使用的幾個函數的關係,但願你會有所收穫,如下就是這篇文章的介紹。python
# a <= n <= b。若是 a <b, 則 b <= n <= a。
print random.uniform(10, 20)
print random.uniform(20, 10)
# ----
# 18.7356606526
# 12.5798298022
複製代碼
用於生成一個指定範圍內的整數。其中參數a是下限,參數b是上限,Python生成隨機數app
print(random.randint(12, 20)) # 生成的隨機數n: 12 <= n <= 20
print(random.randint(20, 20)) # 結果永遠是20
# print random.randint(20, 10) # 該語句是錯誤的。
# 下限必須小於上限。
複製代碼
從指定範圍內,按指定基數遞增的集合中 ,這篇文章就是對python生成隨機數的應用程序的部分介紹。dom
import random
random.randint(0,99)
複製代碼
import random
random.randrange(0, 101, 2)
複製代碼
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
random.choice ( ['apple', 'pear', 'peach', 'orange', 'lemon'] )
# 'lemon'
複製代碼
import random
items = [1, 2, 3, 4, 5, 6]
random.shuffle(items)
print(items)
# [3, 2, 5, 6, 4, 1]
複製代碼