Skip to content

Instantly share code, notes, and snippets.

@jaumebonet
Created February 2, 2015 14:23
Show Gist options
  • Save jaumebonet/3fea6476c957d10d3acd to your computer and use it in GitHub Desktop.
Save jaumebonet/3fea6476c957d10d3acd to your computer and use it in GitHub Desktop.
Create ascii ordered list of letters
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