## Object Oriented Programming In Python
Python is a multipurpose programming language that supports various programming styles, together with object-oriented programming (OOP) through the use of **objects** and **classes**.
An object is any existence that has **multiplication** and **behaviors**. For example, a parrot is an object. It has
* **attributes** – name, age, color, etc.
* **behavior** – dancing, singing, etc.
Likewise, a class is a blueprint for that object.
### Cl