Python shopping cart program πŸ›’
Bro Code Bro Code
1.86M subscribers
88,013 views
0

 Published On Nov 8, 2022

#python #tutorial #course

Shopping cart exercise

foods = []
prices = []
total = 0

while True:
food = input("Enter a food to buy (q to quit): ")
if food.lower() == "q":
break
else:
price = float(input(f"Enter the price of a {food}: $"))
foods.append(food)
prices.append(price)

print("----- YOUR CART -----")

for food in foods:
print(food, end=" ")

for price in prices:
total += price

print()
print(f"Your total is: ${total}")

show more

Share/Embed