Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created October 20, 2019 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/31c69430f944520b40de74a808384377 to your computer and use it in GitHub Desktop.
Save codecademydev/31c69430f944520b40de74a808384377 to your computer and use it in GitHub Desktop.
Codecademy export
def shipping_cost_ground(weight):
if weight <= 2:
price_per_pound = 1.50
elif weight <= 6:
price_per_pound = 3.00
elif weight <= 10:
price_per_pound = 4.00
else:
price_per_pound = 4.75
return 20 + (price_per_pound * weight)
print(shipping_cost_ground(8.4))
shipping_cost_premium = 125.00
def shipping_cost_drone(weight):
if weight <= 2:
price_per_pound = 4.50
elif weight <= 6:
price_per_pound = 9.00
elif weight < 10:
price_per_pound = 12.00
else:
price_per_pound = 14.25
return (price_per_pound * weight)
print(shipping_cost_drone(1.5))
def print_cheapest_shipping_method(weight):
ground = shipping_cost_ground(weight)
premium = shipping_cost_premium
drone = shipping_cost_drone(weight)
if ground < premium and ground < drone:
method = "standard ground"
cost = ground
elif premium < ground and premium < drone:
method: "premium ground"
cost = premium
else:
method = "drone"
cost = drone
print(
"The cheapest option available is $%.2f with %s shipping."
% (cost, method)
)
print(print_cheapest_shipping_method(4.8))
print(print_cheapest_shipping_method(111))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment