Created
November 1, 2012 01:18
-
-
Save nmcv/3991007 to your computer and use it in GitHub Desktop.
Generate lowercase letters of the English alphabet in Python without using strings module
This file contains 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
# Lowercase 'a' to 'z' list | |
print [chr(i) for i in xrange(ord('a'), ord('z')+1)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment