python之生成随机密码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之生成随机密码相关的知识,希望对你有一定的参考价值。

#!/usr/bin/python
#-*-conding:utf-8-*-

#密码随机生成器,密码长度由用户输入,用户可以自己设置密码长度
import random
import string

def getRandompwd(pwd_length):
    password = ‘‘
    for i in range(pwd_length):
        password = str(password + str(random.randrange(0,10)))
    print(password)
        

pwd_length = int(input("please input the password length:"))
getRandompwd(pwd_length)

 运行:

please input the password length:6
077558

 

以上是关于python之生成随机密码的主要内容,如果未能解决你的问题,请参考以下文章

python 实现随机生成8位密码小程序

随机生成指定长度的密码之---Random

python 生成随机密码

python快速生成验证码(密码)

Python实现随机密码生成器

python生成随机密码