In the next folders I show some little projects in Python.
In this projects I show little examples on how to use python classes. The first code I create some figures classes and in the second I created a user interface for show simple calculations.
In the lines of figures.py I create a class call "Figure". The daugther classes I called them "square", "circle" and "right-triangle". It is a very simple code but I understood how the heritage works in Python
https://github.com/Robertelfarfo/Python/tree/main/Class_figures
Is important to test the code that is developed. Python has some modules for this task as nose.
https://github.com/Robertelfarfo/Python/tree/main/Testing
Django is a backend framework and one I like and I prefer to use.