Pet Class
Write a class named Pet, which should have the following attributes:
The Pet class should ahve an __init__ method that creates these attributes. It should also have the following methods:
Once you have written the class, write a program that creates an object of the class and prompts the user to enter the name, type, and age of his or her pet. This data should be stored as the object's attributes. Use the object's accessor methods to retrieve the pet's name, type, age, and display the data on the screen.
A System to Manage Employees using a Class and a Dictionary
Write a Python program that stores 'Employee' objects in a dictionary. (You MUST use the class we created when we created Employee class for Programming Exercise 4. Your class must be called 'Employee' and stored inside a Python module named emp.py). Use the employee ID number as the key. The program should present a main menu that allows the user to execute the following actions and looks like Figure 1: see image.
Your main program must be called MainEmployee.py. Upon exiting the program, it must pickle the dictionary and save it to a file. Each time the program starts, it must try to load the pickled dictionary from the file. If the file does not exist, the program must start with an empty dictionary (in other words create an empty dictionary if one does not exist by the name employees.dat.