Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Object Oriented Programming using Python : Beginner to Pro
Rating: 5.0 out of 5(3 ratings)
76 students

What you'll learn

  • Fundamentals of object-oriented programming (OOP)
  • Design and implement custom classes to model real-world entities
  • Significance of access modifiers in controlling the visibility and accessibility of class members
  • Advanced OOP concepts such as operator overloading, static variables and so on
  • Practical examples and case studies, including the development of an ATM machine

Course content

8 sections23 lectures1h 40m total length
  • Introduction5:40

    Object-oriented programming (OOP) is a programming paradigm that revolves around the concept of objects. An object is a bundle of data (attributes) and associated procedures (methods) that act upon the data. Think of objects as real-world entities—like a car, a person, or a book—each with its own unique properties and behaviors. OOP encourages the organization of code into reusable, modular components, enhancing code readability, maintainability, and scalability. Key principles of OOP include encapsulation, inheritance, and polymorphism, which help in creating robust and flexible software solutions.

  • Classes and Objects3:55
  • Magic Methods in OOPS5:50

Requirements

  • Basics of python

Description

In this course, we'll explore a fun way to write computer programs called 'object-oriented programming' or 'OOP'. Think of it like building with blocks. Each block is like a special thing called an 'object'. We'll start with the basics. We'll learn what objects and classes are. Objects are like the things around us, like a car or a cat. Classes are like blueprints for making those things. We'll learn how to make our own objects and use them to solve problems.

One cool thing we'll learn is called 'inheritance'. It's like passing down traits from parents to children. In programming, it means we can reuse code from one class in another class. This makes our programs easier to understand and saves us time.

We'll also learn about 'encapsulation'. It's like putting things in a box. We'll keep some things hidden inside our objects and only show what's necessary. This makes our programs safer and easier to use.

By the end of the course, you'll be able to create your own programs using OOP. You'll be able to make things like a pretend ATM machine, where you can deposit and withdraw money. You'll also be able to model real-world things like cars and animals.

So, if you want to become a better programmer and build cool stuff, this course is for you! Get ready to have fun and learn some awesome new skills!

Who this course is for:

  • Beginner programmers who want to learn object-oriented programming (OOP) concepts from scratch