码迷,mamicode.com
首页 > 编程语言 > 详细

用Python写一个随机密码生成器

时间:2018-07-22 16:56:57      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:生成   length   字符串   ice   sys   code   time   list   产生   

 1 # /bin/python3
 2 import sys
 3 import time
 4 import  random
 5 strs = [ i for i in range(32,128) ]   #产生密码的ASCII码的序列
 6 Length =10  #生成密码长度
 7 #下面这个函数用来生成Length长度的密码
 8 def randomstr(strs,length):
 9         liststr = []
10         for  i in range(length):
11              liststr.append(random.choice(strs))
12         return liststr
13 def strings():
14          string = ""
15          char = randomstr(strs,Length)
16          for i in char:
17                 string+=chr(i)
18          return string
19 #上面这个函数将调用randomstr函数,返回字符串密码
20 
21 start = time.time
22 count =1
2324 sc = strings()   #调用函数生成密码
26 sys.stdout.write(sc)

这个程序可以用来生成指定长度的随机密码,一般使用10位左右即可

生成密码记得使用某种持久化方式保存,无法再现。

用Python写一个随机密码生成器

标签:生成   length   字符串   ice   sys   code   time   list   产生   

原文地址:https://www.cnblogs.com/BlogOfMr-Leo/p/9350115.html

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