mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-09-24 15:00:31 +08:00
* refactor: clean to roadmap content * refactor: move shared helpers into scripts/lib
10 lines
836 B
Markdown
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) |