CS 0008: Fall 2013 Lab 13 Write a class called Employee that holds the following data about an employee: name and department. (In a real setting, much more information would be stored, but that would just be extra typing for you). Define methods __init__, set_name, set_department, get_name, get_department, __str__. Don't bother typing in comments (again, to save you typing). Then, write a program in a separate file that imports this class, and uses it to create a list of three employees: Name Department Susan Meyers Accounting Mark Jones IT Joy Rogers Manufacturing This is not a general program - you don't have to input information from the user. Just write three statements to create three Emplyee objects and put them in a list. When you are done, print the three objects. The programs on the schedule for 11/18 are good models. Please hand in a printout of your programs, writing your and your partner's names on them.