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

print(ord('A'))
print(ord('a'))
print(ord('0'))
import random
SecChar=[]
for i in range(26):
SecChar.append(chr(i+ord('A')));
for i in range(26):
SecChar.append(chr(i+ord('a')));
for i in range(9):
SecChar.append(chr(i+ord('0')));
print(SecChar)
for i in range(10):
password=""
for j in range(8):
s=int(random.randint(1,60))
password+=SecChar[s]
print(password)

在26个大小写字母(52个),以及9个数字组成的字符列表中, 随机生成10个8位密码的作业_第1张图片

 

 

你可能感兴趣的:(在26个大小写字母(52个),以及9个数字组成的字符列表中, 随机生成10个8位密码的作业)