Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 10, 2017 11:38
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/5e859d6dd0a95f9f761496fa1a4c024d to your computer and use it in GitHub Desktop.
Save codecademydev/5e859d6dd0a95f9f761496fa1a4c024d to your computer and use it in GitHub Desktop.
Codecademy export
def hotel_cost(night):
return 140*night
def plane_ride_cost(city):
if city=="charlotte":
return 183
elif city=="tampa":
return 220
elif city=="pittsburg":
return 222
elif city=="los angeles":
return 475
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment