Skip to content

Instantly share code, notes, and snippets.

@devgiordane
Last active October 4, 2018 01:00
Show Gist options
  • Save devgiordane/37e9475af767a4270cbb35cccbee828a to your computer and use it in GitHub Desktop.
Save devgiordane/37e9475af767a4270cbb35cccbee828a to your computer and use it in GitHub Desktop.
Generate a list with the alphabet using the Unicode.
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