Fave animal

Challenge
No

Write a program that asks the user questions about their fave animal, and outputs a message about it. Here's some I/O:

  • Fave animal
  • ===========
  • What is the genus of your fave animal? canis
  • What is the species of your fave animal? lupus
  • What is the subspecies of your fave animal? familiaris
  • What is the common name of your fave animal? dog
  •  
  • -----------------------
  •  
  • Your fave animal is canis lupus familiaris, better known as the dog.

(The line of dashes is part of the output, as is the following line starting with "Your fave...". Your program should print them.)

User input is highlighted. The rest is output by your program.

Users can input any animal deets they want.

Format your I/O exactly as is given, with underlines, blank lines, etc.

Hint: This will print a blank line: print()

Upload a zip file of your project folder.

Where referenced