Category: Allgemein

  • Basics of Object Orientation in Python

    Today I learned about classes in Python and did a little exercise which I thought would be helpful to understand the basic concepts. So let us have a look at the code. In the file robots.py I define a Robot base class with some common properties and methods and 2 descendant classes RobotCar and RobotShip…