Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 22, 2020 22:46
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/5e24c22ff66cf8b09526bf02811f91be to your computer and use it in GitHub Desktop.
Save parzibyte/5e24c22ff66cf8b09526bf02811f91be to your computer and use it in GitHub Desktop.
lista = ["Claire", "Leon", "Tyrant"]
for indice, nombre in enumerate(lista):
print("En " + str(indice) + " tenemos a " + nombre)
# O con f strings
print(f"En {indice} tenemos a {nombre}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment