码迷,mamicode.com
首页 > 其他好文 > 详细

cookbook 10.1生成随机密码

时间:2014-10-05 22:38:49      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   sp   div   c   log   

任务:

随机地创造出新密码。比如,有时需要给新的用户账号分配新的密码。

 

解决方案:

from random import choice
import string
def GenPasswd(length=8,chars=string.letters+string.digits):
    return ‘‘.join([ choice(chars) for i in range(length) ])

#test
if __name__ == __main__:
    for i in range(6):
        print GenPasswd(12)

 

cookbook 10.1生成随机密码

标签:style   blog   color   ar   for   sp   div   c   log   

原文地址:http://www.cnblogs.com/LittleRedPoint/p/4007409.html

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