= 7: cost -= 50 return cost elif days >=3: cost -= 20 return cost else: return cost def trip_cost(city, days): return rental_car_cost(days) + hotel_cost(days - 1) + plane_ride_cost(city) print(trip_cost("Tampa", 5))"> = 7: cost -= 50 return cost elif days >=3: cost -= 20 return cost else: return cost def trip_cost(city, days): return rental_car_cost(days) + hotel_cost(days - 1) + plane_ride_cost(city) print(trip_cost("Tampa", 5))"> = 7: cost -= 50 return cost elif days >=3: cost -= 20 return cost else: return cost def trip_cost(city, days): return rental_car_cost(days) + hotel_cost(days - 1) + plane_ride_cost(city) print(trip_cost("Tampa", 5))">
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
return cost
elif days >=3:
cost -= 20
return cost
else:
return cost
def trip_cost(city, days):
return rental_car_cost(days) + hotel_cost(days - 1) + plane_ride_cost(city)
print(trip_cost("Tampa", 5))