Untitled

 avatar
unknown
plain_text
2 years ago
239 B
13
Indexable
# Function to show all available products in the warehouse
def show_products():
    print("Warehouse products:\n")
    for name, info in warehouse.items():
        print(f"{name} - price: {info['price']}, quantity: {info['quantity']}")
Editor is loading...