Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 452 Bytes

README.md

File metadata and controls

16 lines (9 loc) · 452 Bytes

30 Days of Code - Day 2

To view solutions, see the file operators.py in your text editor.

Day 2: Operators

Task:

Given the meal price (base cost of a meal), tip percent (the percentage of the meal price being added as tip), and tax percent (the percentage of the meal price being added as tax) for a meal, find and print the meal's total cost.

Solution:

In operators.py.

Return to navigation list