Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 6, 2019 05: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/b06d100697b4a111f6c7d6c5b2195444 to your computer and use it in GitHub Desktop.
Save parzibyte/b06d100697b4a111f6c7d6c5b2195444 to your computer and use it in GitHub Desktop.
# Para preguntarle al usuario algo de sí o no
eleccion = input("¿Te gusta Python? [S/N] ")
# Convertirlo a minúscula, así no importa si dice S o s, o N o n
if eleccion.lower() == "s":
print("A mí también")
else:
print("Deberías probarlo, es un buen lenguaje de programación")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment