What is Object-Oriented Programming?

Object-oriented programming is a method of designing programs that groups together data using objects. Each object is part of a class which serves as a blueprint for defining the object. The idea of objects is modelled from objects in real life, so for example, we could have a class named 'vehicle' and objects within this class could be 'car', 'bus' and 'bike'. All of these objects share variables such as 'wheels' but may have different data for these variables e.g. a bike has two wheels and a car has four.

CL

Related Python Mentoring answers

All answers ▸

Create an rock, paper, scissors game. The user should input one option, and the computer should play randomly.


Create an algorithm that can be used as a guessing game. Make sure to import random at the start.


[Exam style] Python is an interpreted language. Explain what this means and how interpreted languages differ from compiled languages.


What is the difference between a FOR loop and WHILE loop and how do I write them?