In this lesson, we will implement a class named Employee in Python.
Implementation of the Employee class
Let’s implement the Employee class illustrated below. We’ll start with just adding the properties of the class.
xxxxxxxxxx
# this code will compile
class Employee:
# defining the properties and assigning them none
ID = None
salary = None
department = None