Files
developer-roadmap/roadmaps/python/content/object-oriented-programming@P_Di-XPSDITmU3xKQew8G.md
T
Arik Chakma 274082fd77 feat: clean roadmap content and sync scripts (#10181)
* refactor: clean to roadmap content

* refactor: move shared helpers into scripts/lib
2026-07-28 05:45:17 +06:00

10 lines
836 B
Markdown

# OOP
In Python, object-oriented Programming (OOPs) is a programming paradigm that uses objects and classes in programming. It aims to implement real-world entities like inheritance, polymorphism, encapsulation, etc., in programming. The main concept of OOPs is to bind the data and the functions that work on that together as a single unit so that no other part of the code can access this data.
Visit the following resources to learn more:
- [@article@Object Oriented Programming in Python](https://realpython.com/python3-object-oriented-programming/)
- [@video@Object Oriented Programming (OOP) In Python - Beginner Crash Course](https://www.youtube.com/watch?v=-pEs-Bss8Wc/)
- [@video@OOP in Python One Shot](https://www.youtube.com/watch?v=Ej_02ICOIgs)
- [@video@Python OOP Tutorial](https://www.youtube.com/watch?v=IbMDCwVm63M)