Advertisement
mbstanchev

Untitled

Jan 22nd, 2022
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. fruit = input()
  2. day_of_week = input()
  3. quantity = float()
  4.  
  5. price = 0
  6.  
  7. is_type_fruit = fruit == "banana" or fruit == "apple" or fruit == "orange" or fruit == "grapefruit" or fruit == "kiwi" or fruit == "pineapple" or fruit == "grapes"
  8. work_days = day_of_week == "Monday" or day_of_week == "Tuesday" or day_of_week == "Wednesday" or day_of_week == "Thursday" or day_of_week == "Friday"
  9. weekends = day_of_week == "Saturday" or day_of_week == "Sunday"
  10.  
  11. if is_type_fruit:
  12. if work_days:
  13. if fruit == "banana":
  14. price = 2.5
  15. elif fruit == "apple":
  16. price = 1.2
  17. elif fruit == "orange":
  18. price == 0.85
  19. elif fruit == "grapefruit":
  20. price = 1.45
  21. elif fruit == "kiwi":
  22. price = 2.70
  23. elif fruit == "pineapple":
  24. price = 5.5
  25. elif fruit == "grapes":
  26. price = 3.85
  27.  
  28. elif weekends:
  29. if fruit == "banana":
  30. price = 2.7
  31. elif fruit == "apple":
  32. price = 1.25
  33. elif fruit == "orange":
  34. price == 0.90
  35. elif fruit == "grapefruit":
  36. price = 1.60
  37. elif fruit == "kiwi":
  38. price = 3
  39. elif fruit == "pineapple":
  40. price = 5.6
  41. elif fruit == "grapes":
  42. price = 4.2
  43.  
  44.  
  45.  
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement