All Questions
2 questions
0
votes
2
answers
2k
views
Want to make a list of all 4 character combinations of 'abcdefghijklmnopqrstuvwxyz0123456789'
i want to make a list of all possible combinations of the letters of the alphabet and all numbers, so starting at
aaaa aaab aaac aaad aaae
all the way up to
z999 zzz9 0009
and everything in between
I'...
0
votes
0
answers
40
views
How to increment value by 4 of alphabetic string value in python code ? i want to print sequence like this E,I,M,Q
I wan to increment value of acii_lowercase by +4 in this function.
from string import ascii_lowercase
import itertools
def iter_all_strings():
for size in itertools.count(2):
for s in ...