--- title: Power Of Object Oriented Programming fid: 20240128-204918 url: https://realpython.com/python-classes/ tags: --- (Power-Of-Object-Oriented-Programming)= # Power Of Object Oriented Programming 2024-01-28 From: [Python Classes: The Power of Object-Oriented Programming – Real Python](https://realpython.com/python-classes/) **Key Points** - Define Python classes with the **`class` keyword** - Add state to your classes with **class** and **instance attributes** - Provide **behavior** to your classes with **methods** - Use **inheritance** to build hierarchies of classes - Provide **interfaces** with **abstract classes**