You are viewing a single comment's thread. Return to all comments →
# compute tip and tax amounts tip = meal_cost * tip_percent / 100 tax = meal_cost * tax_percent / 100 # total cost total_cost = meal_cost + tip + tax # Print rounded total (nearest integer) print(round(total_cost))
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 →
Write your code here