首页 > 其他 > 详细

生成固定位数含大小写字母符号的密码

时间:2019-01-30 00:58:21      阅读:186      评论:0      收藏:0      [点我收藏+]

使用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)

不到十行代码搞定!

生成固定位数含大小写字母符号的密码

原文:https://www.cnblogs.com/testerren/p/10336378.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!