OOP 1: First Look at Class and Object

OOP 1: First Look at Class and Object

The main OOP idea is to describe in programming language any object (incl. ones from the real life) by defyining its its characteristics, behavior etc.

This series of tasks will help you learn the basics of OOP in Python, such as creating classes, attributes, and methods, inheritance, method overrides, using super(), and polymorphism. If you need additional help, you may use this documentation or another one.

1.1. Create a Car class that contains no methods or attributes.

1.2. Create an object my_car from the Car class.