Last active
October 4, 2018 01:00
-
-
Save devgiordane/37e9475af767a4270cbb35cccbee828a to your computer and use it in GitHub Desktop.
Generate a list with the alphabet using the Unicode.
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
alfabeto =[] | |
for letra in range(97, 123): | |
alfabeto.append(chr(letra)) | |
print(alfabeto) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment