Basic Terminologies of OOP in Python.
Table of Contents
Class
Object
Methods
Class Variables
Class
A class is a blueprint for creating objects, providing initial values for state and implementation of a behavior.
Example:
class Dog:
pass
Here, we have created an empty dog class. Ea...
imrahulmane.hashnode.dev2 min read