Code

Creating Objects in Python

To create objects we instantiate the class by calling the class name and assigning it to the variable.

obj = ClassName()

To access the object attributes and methods we can use the dot operator.

print( obj.items ) print( obj.findMaximum() )

0

1

Updated 2021-02-14

Tags

Python Programming Language

Data Science