您好,登錄后才能下訂單哦!
import random
print(random.random()) #生成0-1的隨機數
print(random.randint(1,7)) #生成1-7的隨機數,包含1和7
print(random.randrange(1,100,4)) #生成1-100,以4為基數的隨機數,如:1,4,8,12,16....等
random.choice("hello world") #從字符串序列中隨機生成一個字母,如:h,w,r,l,e等
random.choice(['hello','world','hi','you','java'])
print(random.sample([1,3,5,7,9,12],3)) #從序列中隨機取3個數,即[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位隨機驗證碼
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)
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。