Created
February 2, 2015 14:23
-
-
Save jaumebonet/3fea6476c957d10d3acd to your computer and use it in GitHub Desktop.
Create ascii ordered list of letters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
first_letter = 'A' | |
last_letter = 'Z' | |
alphabet = list(map(chr, range(ord(first_letter), ord(last_letter) + 1))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment