Object Oriented Programming in Python: A Comprehensive Guide
- Description
- Curriculum
- FAQ
- Reviews
The object-oriented programming course will teach students how to write code that is organized around objects instead of functions or procedures. This approach ensures clearer, more efficient, and more reusable code. Throughout the course, students will learn the fundamental concepts of object-oriented programming such as composition, encapsulation, inheritance, polymorphism, abstraction and more through lectures, exercises, and hands-on projects. The course will also delve into object-oriented design patterns, debugging techniques, and best practices in programming. By the end of the course, students will have a strong foundation in object-oriented programming and be ready to develop complex, object-oriented software applications.
Python course covers inheritance, one of the most important foundational concepts in object-oriented programming. The course begins by exploring the basics of inheritance and then delves into the different types of inheritance, such as single and multiple inheritance. It also reviews methods for overriding and extending parent class functionality
The Python course delves into the concept of Composition, which involves the construction of complex objects by combining simple ones. Students learn how to achieve code reusability and maintainability through composition, by using classes that have objects of other classes as instance variables
Encapsulation is a concept in object-oriented programming that refers to the bundling of data and methods within a single unit, hiding the implementation details from the user. This enables developers to create more secure and robust code by preventing direct access to the internal state of an object and limiting the scope of its functionality
-
1Introduction To Object Oriented ProgrammingVideo lesson
-
2Class & Object CreationVideo lesson
-
3__init__ Constructor & self ParameterVideo lesson
-
4Instance VariableVideo lesson
-
5Class VariableVideo lesson
-
6MethodVideo lesson
-
7getattr & setattr FunctionsVideo lesson
-
8__class__ attributeVideo lesson
-
9__dict__ PropertyVideo lesson
-
10Object is IndependentVideo lesson
-
11__str__ MethodVideo lesson
-
12__name__ PropertyVideo lesson
-
13Class as an ObjectVideo lesson
-
18Introduction to InheritanceVideo lesson
-
19Inherit PropertiesVideo lesson
-
20Inherit a Method & Override ItVideo lesson
-
21Access & Override an Attribute of a SuperclassVideo lesson
-
22super() FunctionVideo lesson
-
23Multiple InheritanceVideo lesson
-
24MRO ( Method Resolution Order )Video lesson
-
25__bases__ AttributeVideo lesson
-
26hasattr( ) FunctionVideo lesson
-
27issubclass( ) FunctionVideo lesson
-
28isinstance( ) FunctionVideo lesson
External Links May Contain Affiliate Links read more