There are (3) employees in the system.
An explanation of how you utilized looping to make the Python script for Functionality 2 run constantly.
A description of how you separated Functionality 1 into two functionalities.
An explanation of how you used global variables to develop a counter to keep track of the number of employees in the system.
A brief description of the purpose of this functionality.
The script for this functionality.
For this assignment, you will continue to use variables, functions, and control structures to improve the “View all Employees” functionality you developed in Week3 and utilize functions and the passing of parameters to add two new functionalities to your Employee Management System.
Update the “View all Employees” functionality you have developed in Week3 to view the result in the following format:
---------------------------- Mike Smith -----------------------------
SSN: 123123123
Phone: 111-222-3333
Email: mike@g'mail.com
Salary: $6000
------------------------------------------------------------------------
---------------------------- Sara Smith -----------------------------
SSN: 123123111
Phone: 111-222-4444
Email: [email protected]
Salary: $6500
------------------------------------------------------------------------
Now you will continue to employ the list data structure and utilize functions to add the following two new functions:
---------------------------- Mike Smith -----------------------------
SSN: 123123123
Phone: 111-222-3333
Email: [email protected]
Salary: $6000
------------------------------------------------------------------------
Once you have completed Functionality 4, you must provide the following in a Word document and submit.
An explanation of how variables, functions, and control structures were used to improve the “View all Employees” functionality to view results in the format provided.
An explanation of how you employed the list data structure to add the two new functions, “Search employee by SSN” and “Edit employee information.”
A brief description of the purpose of this functionality.
The script for this functionality.
You will now combine all the functionalities you have developed into one single application. Explain the steps you took to combine all of the functions into one single application
The end product should look similar to the following:
------------------------ Employee Management System ---------------------------
There are ( 5 ) employees in the system.
-------------------------------------------------------------------------------------------
Add new employee
View all employees
Search employee by SSN
Edit employee information
Export employees’ information into a text file
Import employees’ information from a text file
-------------------------------------------------------------------------------------------
Please enter your option number:
An explanation of the steps you took to combine all of the functions into one single application.