gpt4 book ai didi

python - 生成密码列表时出现内存错误

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:06:18 24 4
gpt4 key购买 nike

我试图生成所有可能的密码,长度在 1-5 个字符之间,其中可能的字符是小写字母、大写字母和 10 位数字。

为了简单起见,我将可能的字符限制为小写字母和十位数字,密码长度限制为 3-5 个字符。

import itertools
charMix = list("abcdefghijklmnopqrstuvwxyz1234567890")
mix = []
for length in range(3, 6):
temp = [''.join(p) for p in itertools.product(charMix, repeat=length)]
mix.append(temp)

但是,我在 temp 赋值行遇到内存错误,不知道如何克服这些错误:(

有没有办法在没有内存错误的情况下生成这些密码?

最佳答案

由于您实际上提到了术语生成,如果可以满足您的用例,请在此处考虑一个 generator:

from typing import Generator
import itertools

def make_pws(join="".join) -> Generator[str, None, None]:
charMix = "abcdefghijklmnopqrstuvwxyz1234567890"
for length in range(3, 6):
for p in itertools.product(charMix, repeat=length):
yield join(p)

您可以像序列一样遍历此结果,而无需将整个内容放在内存中:

>>> pws = make_pws()
>>> next(pws)
'aaa'
>>> next(pws)
'aab'
>>> next(pws)
'aac'
>>> next(pws)
'aad'
>>> for pw in make_pws():
... # process each one at a time

关于python - 生成密码列表时出现内存错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57098930/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com