最新要闻

广告

手机

iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?

iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?

警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案

警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案

家电

【环球速看料】生成你的自定义密码本Python

来源:博客园


【资料图】

python生成一个自定义密码本

import itertools as itsimport os# 定义生成密码本的函数def generate_passwords(length, combination):    if combination == "1":        words = "1234567890"    elif combination == "2":        words = "abcdefghijklmnopqrstuvwxyz"    elif combination == "3":        words = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"    elif combination == "4":        words = "!@#$%^&*()_+"    else:        words = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()_+"    r = its.product(words, repeat=length)    file_name = f"{length}_{combination}.txt"    if os.path.isfile(file_name):        print(f"{file_name} already exists. Please choose a different length or combination.")    else:        with open(file_name, "a") as f:            for i in r:                f.write("".join(i) + "\n")        print(f"{file_name} generated successfully!")# 主函数,获取用户输入并生成密码本def main():    length = input("输入生成密码的长度: ")    while not length.isdigit():        length = input("Invalid input. 重新输入: ")    combination = input("Please choose the combination of the password:\n1. 数字\n2. 小写字母\n3. 大写字母\n4. 特殊字符\n5. 所有组合\n")    while not set(combination).issubset(set("12345")) or not combination:        combination = input("Invalid input. 重新输入: ")        generate_passwords(int(length), combination)if __name__ == "__main__":    main()

运行结果如下:

请输入您要生成的密码长度: 10请选择密码组合方式:1.纯数字 2.字母小写 3.字母大写 4.特殊字符 5.所有组合请输入对应数字:1234生成的密码为:  C4D.)({+/# 

用户可以通过输入不同的数字来选择密码组合方式,也可以通过输入数字串来选择多种组合方式的结合。

生成一个随机密码和一个当前组合方式的密码本

关键词: