Home /
Expert Answers /
Computer Science /
python-language-exercise-1-create-a-python-program-10-marks-write-a-program-that-does-the-pa802
(Solved):
python language
Exercise 1 - Create a Python program [10 marks] Write a program that does the ...
python language
Exercise 1 - Create a Python program [10 marks] Write a program that does the following: While the user has not typed in the word "Quit", it should keep on asking the user for the employee's name, age and salary. Once the user is done, it should print out a list of all the employees and their information in addition to the average age, minimum and maximum salary. The program should have an output similar to the example below. (Hint: It should create three more empty lists to store the employee Name, Ages and Salary and use a While loop).