You are viewing a single comment's thread. Return to all comments →
tip = tip_percent * meal_cost / 100 tax = tax_percent * meal_cost / 100 total_bill = meal_cost + tip + tax print(round(total_bill))
Seems like cookies are disabled on this browser, please enable them to open this website
Day 2: Operators
You are viewing a single comment's thread. Return to all comments →
tip = tip_percent * meal_cost / 100 tax = tax_percent * meal_cost / 100 total_bill = meal_cost + tip + tax print(round(total_bill))