This forum is now read-only. Please use our new forums! Go to forums

banner
Close banner
0 points
Submitted by Morgan Dover
almost 9 years

PAYING THE BILL

need help with paying the bill !! my code meal = 44.50 tax = 0.0675 tip = 0.15 meal = meal + meal * tax

print(“$%.2f” % meal)

Answer 5593abf1e39efe63950006ac

0 votes

Permalink

Hey just remove the $ in the print they want the output as 56.17 and not as $56.17

meal = 44.50
tax = 0.0675
tip = 0.15

meal = meal + meal * tax
total=meal+meal*tip

print("%.2f" % total)

Hope it helps. :D

points
Submitted by potui
almost 9 years