python3
python3
description = {}
stock = {}
cart = []
total_cost = 0
# Display menu
def show_menu():
print("\nOptions:")
print("A - Add an item")
print("E - Edit an item")
print("R - Remove an item")
print("L - List all items")
print("I - Inquire about an item")
print("P - Purchase")
print("C - Checkout")
print("S - Show cart")
print("Q - Quit\n")
else:
print("Invalid command. Type 'help' for options.")