Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created April 10, 2018 18:12
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/0c231ab3eab9163f0b9b25fda3b4ce38 to your computer and use it in GitHub Desktop.
Save codecademydev/0c231ab3eab9163f0b9b25fda3b4ce38 to your computer and use it in GitHub Desktop.
Codecademy export
def hotel_cost(nights):
return 140 * nights
def plane_ride_cost(city):
if city == "Charlotte":
return 183
elif city == "Tampa":
return 220
elif city == "Pittsburgh":
return 222
elif city == "Los Angeles":
return 475
def rental_car_cost(days):
cost = 40 * days
if days >= 7:
cost -= 50
elif days >= 3:
cost -= 20
return cost
def trip_cost(city, days):
return hotel_cost(days - 1) + plane_ride_cost(city) + rental_car_cost(days)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment