Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active April 17, 2018 21:28
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/abec1119d1ba92eb013b4b892837c57b to your computer and use it in GitHub Desktop.
Save parzibyte/abec1119d1ba92eb013b4b892837c57b to your computer and use it in GitHub Desktop.
otra_lista = ["perro", "gato", "conejo"]
try:
otro_indice = otra_lista.index("caballo")
print("caballo está en la posición {} de otra_lista".format(otro_indice))
except:
print("Lo siento, caballo no está en la lista")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment