您好,登錄后才能下訂單哦!
隨機生成10位數密碼,字母和數字組合
import string >>> import random >>> pwd = "" >>> letters=string.ascii_letters+string.digits >>> for i in range(10): ... letter=random.choice(letters) ... pwd += letter ... >>> print(pwd)
利用推導列表生成
"".join([random.choice(string.ascii_letters+string.digits) for i in range(10)])
PS:下面看下Python生成隨機密碼
一、生成隨機密碼要實現的功能:
1、輸入次數,輸入多少次就產生多少條數據
2、要求密碼必須包含大寫字母、小寫字母和數字,長度8位,不能重復
二、實現代碼
import random,string src = string.ascii_letters + string.digits count = input('請確認要生成幾條密碼: ') list_passwds = [] for i in range(int(count)): list_passwd_all = random.sample(src, 5) #從字母和數字中隨機取5位 list_passwd_all.extend(random.sample(string.digits, 1)) #讓密碼中一定包含數字 list_passwd_all.extend(random.sample(string.ascii_lowercase, 1)) #讓密碼中一定包含小寫字母 list_passwd_all.extend(random.sample(string.ascii_uppercase, 1)) #讓密碼中一定包含大寫字母 random.shuffle(list_passwd_all) #打亂列表順序 str_passwd = ''.join(list_passwd_all) #將列表轉化為字符串 if str_passwd not in list_passwds: #判斷是否生成重復密碼 list_passwds.append(str_passwd) print(list_passwds)
三、利用集合的交運算實現
import random,string passwds = [] #保存符合要求的密碼 count = input('請確認要生成幾條密碼: ') i = 0 #記錄符合要求的密碼個數 while i < int(count): passwd = set(random.sample(string.ascii_letters + string.digits,8)) #從字母和數字中隨機抽取8位生成密碼 if passwd.intersection(string.ascii_uppercase) and passwd.intersection(string.ascii_lowercase) and passwd.intersection(string.digits): #判斷密碼中是否包含大小寫字母和數字 passwds.append(''.join(passwd)) #將集合轉化為字符串 i += 1 #每生成1個符合要求的密碼,i加1 print(passwds)
四、利用正則表達式實現
import re, random, string count1 = int(input('請輸入密碼個數(必須大于0): ')) i = 0 passwds = [] while i < count1: tmp = random.sample(string.ascii_letters + string.digits, 8) passwd = ''.join(tmp) if re.search('[0-9]', passwd) and re.search('[A-Z]', passwd) and re.search('[a-z]', passwd): passwds.append(passwd) i += 1 print(passwds)
總結
以上所述是小編給大家介紹的python 隨機生成10位數密碼的實現代碼 ,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。