可以指定要生成的密码长度的Python代码详解编程语言

可以指定要生成的密码长度的Python代码

from os import urandom 
from random import choice 
  
char_set = {'small': 'abcdefghijklmnopqrstuvwxyz', 
             'nums': '0123456789', 
             'big': 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 
             'special': '^!/$%&/()=?{[]}+~#-_.:,;<>|//' 
            } 
  
  
def generate_pass(length=21): 
    """Function to generate a password""" 
  
    password = [] 
  
    while len(password) < length: 
        key = choice(char_set.keys()) 
        a_char = urandom(1) 
        if a_char in char_set[key]: 
            if check_prev_char(password, char_set[key]): 
                continue 
            else: 
                password.append(a_char) 
    return ''.join(password) 
  
  
def check_prev_char(password, current_char_set): 
    """Function to ensure that there are no consecutive 
    UPPERCASE/lowercase/numbers/special-characters.""" 
  
    index = len(password) 
    if index == 0: 
        return False 
    else: 
        prev_char = password[index - 1] 
        if prev_char in current_char_set: 
            return True 
        else: 
            return False 
  
if __name__ == '__main__': 
    print generate_pass()

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/8470.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论