Advertisement
ydpetkov

animal_type

Jul 24th, 2022
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. animal = input()
  2.  
  3.  
  4.  
  5. if animal == "dog":
  6. print ("mammal")
  7. elif animal == "crocodile":
  8. print('reptile')
  9. elif animal == "tortoise":
  10. print('reptile')
  11. elif animal == "snake":
  12. print('reptile')
  13. else:
  14. print('unknown')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement