So I need to get a function that generates a list of letters that increase from a, and end in zzz.
Should look like this:
a b c ... aa ab ac ... zzx
Add another loop:
for x in range(1, 4): for combo in product(ascii_lowercase, repeat=x): print(''.join(combo))
Output is as follows:
a ... aa ... aaa ... zzz
Where ... is a huge number of combinations.
...