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

python获取八位随机密码

时间:2018-07-12 23:58:03      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:int   +=   随机密码   str   temp   随机   range   random   print   

password = ‘‘ for i in range(8): current = random.randrange(0,8) if current > i: temp = random.randint(0,9) elif current < i: temp = chr(random.randint(65,90)) else: temp = chr(random.randint(97,122)) password += str(temp) print password

python获取八位随机密码

标签:int   +=   随机密码   str   temp   随机   range   random   print   

原文地址:http://blog.51cto.com/yht1990/2141185

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