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ī)生成一個字母,如:h,w,r,l,e等
random.choice(['hello','world','hi','you','java'])
print(random.sample([1,3,5,7,9,12],3)) #從序列中隨機(jī)取3個數(shù),即[1,5,7]
print(random.sample('hello world',3))在霍爾果斯等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè) 網(wǎng)站設(shè)計制作定制網(wǎng)站制作,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),營銷型網(wǎng)站建設(shè),成都外貿(mào)網(wǎng)站制作,霍爾果斯網(wǎng)站建設(shè)費(fèi)用合理。
#洗牌
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ī)驗證碼
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)