random模塊可以生成隨機數,我們來看一下其常用函數。
random()
返回[0.0,1.0)范圍內的一個隨機浮點數。看下示例:
importrandom
print(random.random())
uniform(a,b)
返回[a,b)范圍內的一個隨機浮點數。看下示例:
importrandom
print(random.uniform(1.1,9.9))
randint(a,b)
返回[a,b]范圍內的一個隨機整數??聪率纠?/p>
importrandom
print(random.randint(1,10))
randrange(start,stop[,step])
返回[start,stop)范圍內步長為step的一個隨機整數。看下示例:
importrandom
print(random.randrange(1,10))print(random.randrange(1,10,2))
choice(seq)
從非空序列seq返回一個隨機元素。看下示例:
importrandom
print(random.choice('123456'))print(random.choice('abcdef'))
shuffle(x[,random])
將序列x隨機打亂位置??聪率纠?/p>
importrandom
1=[1,2,3,4,5,6]random.shuffle(l)print(l)
sample(population,k)
返回從總體序列或集合中選擇的唯一元素的k長度列表,用于無重復的隨機抽樣。看下示例:
importrandom
l=[1,2,3,4,5,6]print(random.sample(l,3))
以上內容為大家介紹了Pythonrandom模塊,希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。