Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Unblock Content, Stream at Blazing Speeds & Shut Down Hackers with This VPN/Firewall Combo
- *********************
- Download
- ********************
- http://bit.ly/2snuaFm
- ********************
- from animal import animal
- def menu():
- return int(input("""
- 1 -> Add Animal
- 2 -> Delete Animal
- 3 -> Display Animals Info
- 4 -> Exit
- """))
- def add_animal(animals):
- info = ["Animal name: ",
- "Animal species: ",
- "Animal color: ",
- "Animal year of birth: "]
- #Asks for all the input and adds it to the beginning of the list
- return [animal(*list(map(input, info))), *animals]
- def del_animal(animals):
Add Comment
Please, Sign In to add comment