【初学】生成随机密码并保存为文本文档

#-*- coding:utf-8 -*-
'''
简短地生成随机密码,包括大小写字母、数字,可以指定密码长度
'''
#生成随机密码
from random import choice
import string

#python3中为string.ascii_letters,而python2下则可以使用string.letters和string.ascii_letters

def GenPassword(length=8,chars=string.ascii_letters+string.digits):
    return ''.join([choice(chars) for i in range(length)])

if __name__=="__main__":
    temp=[]
    #生成400个随机密码    
    for i in range(400):
        #密码的长度为6
        x=GenPassword(6).lower()
        print x
        temp.append(x+'\n')
        
mima=open('mima.txt','w')
mima.writelines(temp)
mima.close()

你可能感兴趣的:(随机密码生成)