Untitled
unknown
plain_text
3 years ago
239 B
18
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...