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