python3-随机生成10位包含数字和字母的密码

Posted Conner&sun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3-随机生成10位包含数字和字母的密码相关的知识,希望对你有一定的参考价值。

方法一:
知识点:random.sample(sequence, k) 从指定序列中随机获取指定长度的片断
import random,string
num=string.ascii_letters+string.digits
print ( "".join(random.sample(num,10)) )
方法二:
知识点:random.choice(sequence) 从序列中获取一个随机元素
import random,string
passwd=""
num=string.ascii_letters+string.digits
for i in range(10):
   passwd+=random.choice(num)   
print (passwd)
方法三:
知识点:random.randint(a,b) 用于生成一个指定范围内的整数
import random,string
passwd = []
letters = string.ascii_letters + string.digits
length = len(letters)
for i in range(10):
    letter = letters[random.randint(0,length - 1)]
    passwd.append(letter)
print("".join(passwd))
方法四:列表、random.choice()、 random.randint()
import random
import string
passwd = []
for i in range(10):
    if random.randint(0,1):
        letter = random.choice(string.ascii_letters)
        passwd.append(letter)
    else:
        letter = random.choice(string.digits)
        passwd.append(letter)

print("".join(passwd))
方法五:
知识点:推导列表、random.choice()、 random.randint()
import random,string
推导列表1:
print ("".join([random.choice(string.ascii_letters) if random.randint(0,1) else random.choice(string.digits) for i in range(10)])) 推导列表2: print ([random.choice(string.ascii_letters+string.digits) for i in range(10)])

 


以上是关于python3-随机生成10位包含数字和字母的密码的主要内容,如果未能解决你的问题,请参考以下文章

五种方法实现python3-随机生成10位包含数字和字母的密码

随机生成密码,长度6-10位、不可包含特殊字符、必须包含大写、小写和数字,oracle 如何实现?

python 实现随机生成8位密码小程序

#在26个大小写字母(52个),以及9个数字组成的字符列表中,随机生成10个8位密码

随机生成一个6/8/12位密码,数字加字母的密码

在26个大小写字母(52个),以及9个数字组成的字符列表中, 随机生成10个8位密码.