I currently have the need for a certain type of Iterator / generator (not actually sure which is the appropriate term) that will generate a character sequence such as the following:
axxx
bxxx
cxxx
dxxx
...
aaxx
abxx
and so on
So for every iteration through the alphabet it moves to the next place and replaces 'x' and repeats...
I have tried Iterators and generators with Python but cant seem to get this fixed character functionality.