ICE 5 - slcc2c/CS5590_Python GitHub Wiki

  1. Create a class Employee and then do the following:

Create a data member to count number of employees

Create a constructor to initialize name and salary

Create a function to calculate number of employees

Create a function to display employee name and salary

Create a class Manager and it should inherit the properties of Employee class.

Create instances of Employee and Manager class and call their member functions.

  1. Create a 10x10 array with random values and find the minimum and maximum values

Here is the code Screenshot: