当前位置:天才代写 > tutorial > Python教程 > python 生成随机密码

python 生成随机密码

2018-05-17 08:00 星期四 所属: Python教程 浏览:366

python">#!/usr/bin/env python

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)

标签:python

 

    关键字:

天才代写-代写联系方式