Author: tmoechel
-
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…
-
Comparing a Python function with a C# method
On my way to understanding Python I learned how to declare a Python function. Example for a simple add numbers function: The analogous add method in C# would be: Let us compare the syntax. One obvious difference is naming conventions for methods or functions. In Python you use lowercase letters and underscores for semantic separation,…
-
Welcome to the World of AI and Python
Since long I got interested in AI. Never had the time to really investigate. I had heard of Tensor Flow and other Tools, had a look at the AI Tools on Azure like the Azure AI Services but this is a lot of material to read and a lot already customized. So why not start…