Quan


WEB安全 内网安全 终端对抗 威胁情报
WEB安全
python生成m到n位字母全排列的代码

每次用每次都得去GPT那生成一次,太费劲了,记录一下
import itertools
import string

# 打开文件并准备写入
with open('output.txt', 'w') as f:
    # 从长度为 1 到 5 的字符串
    for length in range(1, 6):
        # 使用 itertools.product 生成所有可能的排列
        for combination in itertools.product(string.ascii_lowercase, repeat=length):
            # 将每个排列组合成字符串并写入文件
            f.write(''.join(combination) + '\n')


http://redteam.wang