Witherskeleton

Ape Identifier

Jan 3rd, 2023
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.62 KB | Source Code | 0 0
  1. print("Enter the name of the ape you want to know the species name of. haha lmao")
  2. ape = input()
  3. if ape.lower() in ["human", "Human"]:
  4.     print("Homo sapiens")
  5. if ape.lower() in ["gorilla", "Gorilla"]:
  6.     print("Eastern gorilla: Gorilla beringei\nWestern gorilla: Gorilla gorilla")
  7. if ape.lower() in ["orangutan", "Orangutan"]:
  8.     print(
  9.         "Bornean orangutan: Pongo pygmaeus\nSumatran orangutan: Pongo abelii\nTapanuli orangutan: Pongo tapanuliensis"
  10.     )
  11. if ape.lower() in ["chimpanzee", "Chimpanzee", "chimp", "Chimp"]:
  12.     print("Pan troglodytes")
  13. if ape.lower() in ["bonobo", "Bonobo"]:
  14.     print("Pan paniscus")
Add Comment
Please, Sign In to add comment