Can someone help me (btw im using python)
https://www.sololearn.com/coach/15?ref=app Can someone tell me whats wrong with my code please? I've been working on this for hour... You and three friends go to a baseball game and you offer to go to the concession stand for everyone. They each order one thing, and you do as well. Nachos and Pizza both cost $6.00. A Cheeseburger meal costs $10. Water is $4.00 and Coke is $5.00. Tax is 7%. Task Determine the total cost of ordering four items from the concession stand. If one of your friend’s orders something that isn't on the menu, you will order a Coke for them instead. Input Format You are given a string of the four items that you've been asked to order that are separated by spaces. Output Format Yo total = 0 i = 4 while i>0: order=input() if order=="Water": total+=4 if order =="Cheeseburger": total+=10 if order == "Nachos": total+=6 if order == "Pizza": total+=6 if order == "Coke": total+=5 i-=1 print (total)