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 for beginners - Using Python
Rating: 4.3 out of 5(599 ratings)
59,911 students

Object Oriented Programming for beginners - Using Python

Learn and understand object oriented programming step by step
Last updated 3/2026
English

What you'll learn

  • How to create a class
  • How to instantiate a class
  • How to modify a class
  • Inheritance
  • Polymorphism
  • Encapsulation
  • Abstraction

Course content

3 sections29 lectures3h 10m total length
  • Introduction1:17
  • What is Python5:17
  • Installing Python on Windows4:34
  • Installing Python on Macs6:57
  • Installing Pycharm on Windows4:24
  • Installing Pycharm on Macs3:30
  • Changing theme in Pycharm2:37
  • Pycharm configuration on Windows - Part 17:18
  • Pycharm configuration on Windows - Part 28:04
  • Pycharm configuration on Macs11:17

Requirements

  • Basic understanding of using a computer
  • Basic understanding of using the internet

Description

Object-oriented Programming, or OOP for short, is a programming paradigm which provides a means of structuring programs so that properties and behaviors are bundled into individual objects.

For instance, an object could represent a person with a name property, age, address, etc., with behaviors like walking, talking, breathing, and running. Or an email with properties like recipient list, subject, body, etc., and behaviors like adding attachments and sending.

Put another way, object-oriented programming is an approach for modeling concrete, real-world things like cars as well as relations between things like companies and employees, students and teachers, etc. OOP models real-world entities as software objects, which have some data associated with them and can perform certain functions.

Object-oriented programming is based on the imperative programming paradigm, which uses statements to change a program's state. It focuses on describing how a program should operate.

OOP uses the concept of objects and classes. A class can be thought of as a 'blueprint' for objects. These can have their own attributes (characteristics they possess), and methods (actions they perform).

In this course you will learn the key concepts of object oriented programming which includes:

  • Classes

  • Methods

  • Instantiating

  • Inheritance

  • Polymorphism

  • Encapsulation

  • Abstraction

Who this course is for:

  • Beginners to Python
  • Beginners to Programming
  • Beginners to Web Development