生成动态随机密码:
import random,string
'''
length -- 指定密码的长度
chars -- 指定密码有字母、数字、下划线及@、#组成
times -- 指定一次生成的密码个数
'''
chars = string.lowercase+string.uppercase+''.join(map(str,range(10)))+'_@#'
def getpasswd(length = 6,times = 8,chars = chars):
for i in range(times):
print ''.join([random.choice(chars) for i in range(length)])
getpasswd()
getpasswd(length = 2,times=1)
版权声明:本文为博主原创文章,未经博主允许不得转载。