Last active
December 15, 2019 00:01
-
-
Save lfalanga/3c643a8a48a61fa42aae3acaa9225cd7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
else: | |
return 0 | |
def rental_car_cost(days): | |
if days >= 7: | |
return (days * 40) - 50 | |
elif days >= 3: | |
return (days * 40) - 20 | |
else: | |
return days * 40 | |
def trip_cost(city, days, spending_money): | |
return rental_car_cost(days) + hotel_cost(days - 1) + plane_ride_cost(city) + spending_money | |
print trip_cost('Los Angeles', 5, 600) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment