-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtip_calculator_as_functions.py
46 lines (40 loc) · 1.94 KB
/
tip_calculator_as_functions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from optparse import OptionParser
def calculate_rate(base, percentage):
return base * percentage
def calculate_meal_costs(meal_base, tax_rate, tip_rate):
"""
Calculates dollar amounts for tax, tip, and total meal cost
"""
tax_value = calculate_rate(meal_base, tax_rate)
meal_with_tax = tax_value + meal_base
tip_value = calculate_rate(meal_with_tax, tip_rate)
total = meal_with_tax + tip_value
meal_info = dict(meal_base=meal_base,
tax_rate=tax_rate,
tip_rate=tip_rate,
tax_value=tax_value,
total = total)
return meal_info
def main():
parser = OptionParser()
parser.add_option("-m", "--meal", dest="meal", type="float", help="base cost of meal")
parser.add_option("-x", "--tax", dest="tax_percent", type="float" )
parser.add_option("-t", "--tip", dest="tip_percent", type="float",
help="percent tip you want to leave", default=0.20)
#let's accrue good karma by defaulting to a decent 20%
#tip!
(options, args) = parser.parse_args()
if not options.meal:
parser.error("You forgot to indicate the base cost of your meal!")
if not options.tax_percent:
parser.error("You forgot to indicate the tax rate!")
meal_info = calculate_meal_costs(options.meal, options.tax_percent,
options.tip_percent)
print "The base cost of your meal was ${0:.2f}.".format(meal_info['meal_base'])
print "You need to pay ${0:.2f} for tax.".format(meal_info['tax_value'])
print "Tipping at a rate of {0}%, you should leave ${1:.2f} for a tip.".format(
int(100*meal_info['tip_rate']),
meal_info['tax_value'])
print "The grand total of your meal is ${0:.2f}.".format(meal_info['total'])
if __name__ == '__main__':
main()