码迷,mamicode.com
首页 > 编程语言 > 详细

python 生成随机密码

时间:2018-04-24 20:21:23      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:cas   nbsp   ascii   技术分享   code   .sh   /usr   join   python   

#!/usr/bin/python3
# -*- coding: utf-8 -*-
import random,string
src = string.ascii_letters + string.digits


data = random.sample(src,0)
data.extend(random.sample(string.digits, 3))#包含3个数字
data.extend(random.sample(string.ascii_lowercase, 3))#包含3个小写字母
data.extend(random.sample(string.ascii_uppercase, 2))#包含2个大写字母
random.shuffle(data)
passwd = ‘‘.join(data)

print(passwd)

技术分享图片

 

python 生成随机密码

标签:cas   nbsp   ascii   技术分享   code   .sh   /usr   join   python   

原文地址:https://www.cnblogs.com/37yan/p/8932844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!