Skip to content

Instantly share code, notes, and snippets.

@basak
Last active December 19, 2015 08:59
Show Gist options
  • Save basak/5929977 to your computer and use it in GitHub Desktop.
Save basak/5929977 to your computer and use it in GitHub Desktop.
def rental_car_discount(days):
if days < 3:
return 0
elif 3 <= days < 7:
return 20
elif days >= 7:
return 50
def rental_car_cost(days):
return (days * 40) - rental_car_discount(days)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment