Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active April 2, 2019 15:13
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/f27de42d798e31b589b8518dc9eda227 to your computer and use it in GitHub Desktop.
Save parzibyte/f27de42d798e31b589b8518dc9eda227 to your computer and use it in GitHub Desktop.
menu = """Welcome to the store
1 - New product
2 - See all
3 - Update
4 - Delete
5 - Exit
"""
choose = int(input("Choose an option:"))
switch choose:
case 1:
print("Insert")
break
case 2:
print("See")
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment