Python - Range of alphabet chacters
Create a list of alphabet characters between start and stop character.
Create a list of alphabet characters between start and stop character.
Range of integers between the numerical representation of two characters is created and converted back to characters.
map(chr, range(ord({{start}}), ord({{start}})+1))
last update: