使用string包里面的内置函数
>>> import string
>>> dir(string)
['FORMatter', 'Template', '_ChainMap', '_TemplateMetaclass', '__all__', '__
ins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__p
e__', '__spec__', '_re', '_string', 'ascii_letters', 'ascii_lowercase', 'as
ppercase', 'capWords', 'digits', 'hexdigits', 'octdigits', 'printable', 'pu
tion', 'whitespace']
import random,string
password=""
s=string.digits+string.printable+string.ascii_letters #生成包含大小写字母、符号的字符串
for i in range(9): #生成长度为9的密码
password+=random.choice(s) #使用random的内置函数choice
print(password)
不到十行代码搞定!
0