Advertisement
ydpetkov

fruit_or_vegetable

Jul 24th, 2022
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. type_of_product = input()
  2.  
  3.  
  4. if type_of_product == "banana"\
  5. or type_of_product == "apple" \
  6. or type_of_product == "kiwi" \
  7. or type_of_product == "cherry" \
  8. or type_of_product == "lemon" \
  9. or type_of_product == "grapes":
  10. print("fruit")
  11. elif type_of_product == "tomato"\
  12. or type_of_product == "cucumber"\
  13. or type_of_product == "pepper"\
  14. or type_of_product == "carrot":
  15. print("vegetable")
  16. else:
  17. print("unknown")
  18.  
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement