what is OOP concepts in python
Answer (1)
Object-Oriented Programming (OOP) in Python is a way of organising code using classes and objects.
Main OOP concepts :
- Class: Blueprint for objects
- Object: Instance of a class
- Encapsulation: Hiding data
- Inheritance: Reusing code from another class
- Polymorphism: One method, many forms
- Abstraction: Hiding implementation details
Comments (0)
Related Questions
What is functions in Python?
2 Views
What is pandas in python programming
183 Views
What is type conversion in Python
88 Views




