1
我有一個小腳本,從python中給定的字符生成一個單詞列表。但執行後總會得到一個MemoryError。它爲什麼存儲在內存中?有沒有更好的代碼不使用內存的方式,但提供了一個工作輸出?Python MemoryError
from itertools import product
chars = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k',
'm', 'n', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S',
'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '1', '2', '3',
'4', '5', '6', '7', '8', '9']
length = 8
result = ["".join(item) for item in product(*[chars]*length)]
for item in result:
print(item)
順便說一句,你可以使用一個字符串:'chars = string.ascii_letters + string.digits'。 –