An open API service indexing awesome lists of open source software.

https://github.com/arvrao/oops-examples

In this repo, I'll put all interesting classes examples in python. Hope this is helpful in understanding the concept of OOPS & python syntax
https://github.com/arvrao/oops-examples

oops-in-python programming python

Last synced: 3 months ago
JSON representation

In this repo, I'll put all interesting classes examples in python. Hope this is helpful in understanding the concept of OOPS & python syntax

Awesome Lists containing this project

README

          

# OOPS-examples
In this repo, I'll put all interesting classes examples in python. Hope this is helpful in understanding the concept of OOPS & python syntax

Why Object Oriented Programming?
Creating objects allows us to organize related data and functionalies together.
This helps us to write structured and flexible code. Instead of thinking about individual data and functions, we could think of objects and how these onjects interacts with one another. Divide a problem into smaller problems and reusable and define multiple objects with similar attributes and functionalities from a single class. This is a more practical way of solving real life problems.

Everything in python is an object of some class. We can build our own classes to build custom objects.