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

banner
Close banner
0 points
Submitted by ProgrammingPuppies
almost 9 years

I did it correctly... ERROR!!! HELP!!!

Here’s my code: meal = 44.50 tax = 0.0675 tip = 0.15

    total = meal + meal * tax

    print("%.2f" % total)

    

Answer 558cfaa1e0a3006892000c94

4 votes

Permalink

You have this …

total = meal + meal * tax

… but you need to assign the result to meal, rather than to a new variable. Do this instead …

meal = meal + meal * tax

Then you can print the value of meal instead of total

print("%.2f" % meal)

… or even this …

print("$%.2f" % meal)

Output of the last statement …

$47.50
points
Submitted by Glenn Richard
almost 9 years

1 comments

ProgrammingPuppies almost 9 years

Thank you!