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

0 points
Submitted by aparamo000
about 9 years

Im lost someone help me please 5/%

meal = 44.50 tax = 0.0675 tip = 0.15

meal = meal + meal * tax

print(“%.2f” % total)

Answer 54d8bcd99113cb0058009a43

2 votes

Permalink

meal = 44.50 tax = 0.0675 tip = 0.15

meal += meal * tax

total = meal + meal * tip print(“%.2f” % total)

this works, hope it helped

points
Submitted by MiniChop
about 9 years

Answer 54deb8199113cbeb3e00381d

0 votes

Permalink

meal = 44.50 tax = 0.0675 tip = 0.15 meal + meal * tip total = meal + Meal * tip print(“%2f” % total)

points
Submitted by Tony McCabe
about 9 years