...

/

Implementing Properties in a Class

Implementing Properties in a Class

Learn how to create properties, both in classes and outside of classes, and how to access them.

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.

# this code will compile
class Employee:
# defining the properties and assigning them none
ID = None
salary = None
department = None

We have defined three properties as class variables ID, ...