Write a class named Employee that holds the following data about an employee in attributes: ID, number, department, and job title.
Hint: have an __init__ method that takes four arguments + self parameter. Another function to return/print the values (self parameter is the argument).
Once you have written the class, write a program that creates three Employee objects to hold the following data:
Name | ID Number | Department | Job Title |
Susan Meyers | 47899 | Accounting | Vice President |
Mark Jones | 39119 | IT | Programmer |
Joy Rogers | 81774 | Manufacturing | Engineer |
The program should store this data in three objects (three instances of the class Employee in main), then display the data for each employee on the screen (call the function that prints the data)..