我有这段代码,它生成一致的字符串列表。
import itertools
choices = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789"
for length in range(0,20):
for entry in itertools.product(choices, repeat = length):
string = ''.join(entry)
print string
我希望能够从最后一个已知字符串继续运行此脚本。这怎么可能?