Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created December 27, 2017 17:21
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 Fhernd/01650b37a48c6fec520034a50a4f9dca to your computer and use it in GitHub Desktop.
Save Fhernd/01650b37a48c6fec520034a50a4f9dca to your computer and use it in GitHub Desktop.
Uso del operador is en Python.
escritor = "Dostoevsky"
autorMemoriasSubsuelo = escritor
if escritor is autorMemoriasSubsuelo:
print ("Dostoevsky es el escritor de Memorias del subsuelo")
else:
print ("Dostoevsky no es el escritor de Memorias del subsuelo")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment