Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 3, 2021 16:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/50ecc5086da273ab5313c2319235d10e to your computer and use it in GitHub Desktop.
Save parzibyte/50ecc5086da273ab5313c2319235d10e to your computer and use it in GitHub Desktop.
"""
https://parzibyte.me/blog
"""
def incrementar_letra(letra):
return chr(ord(letra)+1)
letra = "A"
while letra != "Z":
print(letra)
letra = incrementar_letra(letra)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment