Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 28, 2021 19:01
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/cd9dbf7ce64e0ba72725ba54572a0d10 to your computer and use it in GitHub Desktop.
Save codecademydev/cd9dbf7ce64e0ba72725ba54572a0d10 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
elif weight <= 10 :
price_per_pound : 4
else:
price_per_pound : 4.75
return 20 + (price_per_pound * weight)
print(shipping_cost_ground(8.4))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment