Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 6, 2019 05:38
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
# 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