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

Posted

tags:

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

在浏览别人博客时学习了random模块,手痒自我练习下,写个随机生成指定长度的密码字符串的函数,拿出来供各位参考:

废话不多说,上代码:

# coding: utf-8
import random
import string

SPECIAL_CHARS = ~%#%^&*
PASSWORD_CHARS = string.ascii_letters + string.digits + SPECIAL_CHARS


def generate_random_password(password_length=10):
    """
    生成指定长度的密码字符串,当密码长度超过3时,密码中至少包含:
    1个大写字母+1个小写字母+1个特殊字符
    :param password_length:密码字符串的长度
    :return:密码字符串
    """
    char_list = [
        random.choice(string.ascii_lowercase),
        random.choice(string.ascii_uppercase),
        random.choice(SPECIAL_CHARS),
    ]
    if password_length > 3:
        # random.choice 方法返回一个列表,元组或字符串的随机项
        # (x for x in range(N))返回一个Generator对象
        # [x for x in range(N)] 返回List对象
        char_list.extend([random.choice(PASSWORD_CHARS) for _ in range(password_length - 3)])
    # 使用random.shuffle来将list中元素打乱
    random.shuffle(char_list)
    return ‘‘.join(char_list[0:password_length])


def test_password_generate():
    random_password = generate_random_password(password_length=6)
    print(random_password)


test_password_generate()

 

打完手工,上妹子:

技术分享

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

python进阶练习之——随机密码生成器

测试工具研发_生成随机密码

php生成随机密码(php自定义函数)转自先锋教程网

python3-随机生成10位包含数字和字母的密码

Python随机生成指定长度字符串并保存到mysql中

python写一个密码生成器的类,要求有个类变量,统计一下一共生成过多少个密码。 要求有4个方法,1:构造方法 2 实例方法 3 类方法 4 静态方法