python生成随机密码小程序

发布时间:2021-01-17编辑:脚本学堂
如何用python生成随机密码,这里用到了python模块random来生成随机密码,学习下python random模块的用法。

例子,随机密码生成代码(python-random/ target=_blank class=infotextkey>python random模块): 
 

复制代码 代码示例:

#!/usr/bin/env python
# www.plcxue.com

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