Skip to content

Instantly share code, notes, and snippets.

@SebGogo
Created April 29, 2018 17: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 SebGogo/1b35ae3dcacad88133ead89cc735b9f3 to your computer and use it in GitHub Desktop.
Save SebGogo/1b35ae3dcacad88133ead89cc735b9f3 to your computer and use it in GitHub Desktop.
Simple python script for planning a trip
"""
Planning a trip
"""
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 = days * 40
if days >= 7:
cost -= 50
elif days >= 3:
cost -= 20
return cost
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