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

Apple iPhone 11 (A2223) 128GB 黑色 移动联通电信4G手机 双卡双待

4999元包邮

去购买 >

方法一:

知识点: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

你可能感兴趣的:(python随机生成八位数密码)