Is there a way to do a letter range in python like this:
for x in range(a,h,)
this is easier for me at least to read/understand (and you can easily customize which letters are included, and in what order):
letters = 'abcdefghijklmnopqrstuvwxyz' for each in letters: print each result: a b c ... z