-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathjacob.py
18 lines (16 loc) · 876 Bytes
/
jacob.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from helpers import *
def shippingCharger(packageWeight):
if (packageWeight > 10):
shippingCharges = packageWeight * 4.75
print("Your shipping charges are $" + format(shippingCharges, ".2f"))
elif(packageWeight <= 10 and packageWeight > 6):
shippingCharges = packageWeight * 4.00
print("Your shipping charges are $" + format(shippingCharges, ".2f"))
elif(packageWeight <= 6 and packageWeight > 2):
shippingCharges = packageWeight * 3.00
print("Your shipping charges are $" + format(shippingCharges, ".2f"))
elif(packageWeight <= 2 and packageWeight > 0):
shippingCharges = packageWeight * 1.50
print("Your shipping charges are $" + format(shippingCharges, ".2f"))
packageWeight = getNum("Enter package weight: ", 0.1, 150, 3, False, "C'mon now.... get serious!" )
shippingCharger(packageWeight)