Python shopping cart program

73 Views
Published
#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}")
Category
Bro Code
Tags
python tutorial for beginners, python course
Be the first to comment