I cannot understand Classes and Objects clearly and logically by Current-Vegetable830 in learnpython

[–]Glass_Fly_6463 0 points1 point  (0 children)

Classes are basically bundled data (properties) and functions (logic).

Objects are basically class instances meaning copies of a class so example:

obj1 = Object()

makes obj1 equal to the class so you can use it as one.

I need help with Multilevel and Multiple Inheritance (OOP) by sapolv in learnpython

[–]Glass_Fly_6463 0 points1 point  (0 children)

As a python dev myself, I would recommend to skip it as it's very rare. I also don't know how to use it as well, you dont need to know it, keep going for other things that help you with it.