每次用每次都得去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')