Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 15, 2018 23:50
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/2c2932252d2a578269aa77af358a0169 to your computer and use it in GitHub Desktop.
Save parzibyte/2c2932252d2a578269aa77af358a0169 to your computer and use it in GitHub Desktop.
menu = """Bienvenido a la tienda.
1 - Insertar producto
2 - Ver todos
3 - Actualizar
4 - Eliminar
5 - Salir
"""
eleccion = int(input("Elige"))
switch eleccion:
case 1:
print("Insertar")
break
case 2:
print("Ver")
break;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment