您好,登錄后才能下訂單哦!
import random
print(random.random()) #生成0-1的隨機(jī)數(shù)
print(random.randint(1,7)) #生成1-7的隨機(jī)數(shù),包含1和7
print(random.randrange(1,100,4)) #生成1-100,以4為基數(shù)的隨機(jī)數(shù),如:1,4,8,12,16....等
random.choice("hello world") #從字符串序列中隨機(jī)生成一個(gè)字母,如:h,w,r,l,e等
random.choice(['hello','world','hi','you','java'])
print(random.sample([1,3,5,7,9,12],3)) #從序列中隨機(jī)取3個(gè)數(shù),即[1,5,7]
print(random.sample('hello world',3))
#洗牌
items=[1,2,3,4,5,6,7]
print(items)
[1,2,3,4,5,6,7]
random.shuffle(items)
print(items)
[2,5,7,4,6,3,1]
#生成5位隨機(jī)驗(yàn)證碼
import random
checkcode=''
for i in range(5):
............current=random.randrange(0,9)
............if current==i:
...............temp=chr(random.randint(65,90))
............else:
...............temp=random,randint(0,9)
............checkcode+=str(temp)
........print(checkcode)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。