Python Range de lettres
a = ord('a')
alph = [chr(i) for i in range(a, a+26)]
Victorious Vicuña
a = ord('a')
alph = [chr(i) for i in range(a, a+26)]