Guest User

Untitled

a guest
Jan 20th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. def rentalCarCost(days):
  2. if days >== 3:
  3. return 40*days-20
  4. elif days>==7:
  5. return 40*days-50
  6. else:
  7. return days*40
Add Comment
Please, Sign In to add comment