1 Matching Annotations
- Oct 2017
-
runestone.academy runestone.academy
-
Python supports the object-oriented programming paradigm
The main OOP concepts:
- an object as a model of a real object
- a class as a factory for objects or as a template that defines the structure of objects from this class and behavior of objects from this class
- an object as an instance of a class
- a method with or without parameters describes the behavior of instances
- calling or invoking method
-