Write a class named Employee that holds the following data about an employee in attributes: name, ID number, department, and job title. 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 the three objects, then display the data for each employee on the screen.
USING PYTHON
1. Write the PYTHON Programs for the following exercises
2. For each program, you need to write:
-
- Comments for all the values, constants, and functions
- IPO
- Variables
- Pseudocode
Employee Class
Write a class named Employee that holds the following data about an employee in attributes:
name, ID number, department, and job title.
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 the three objects, then display the data for each employee on the screen.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images