Introduction to Python

This repository contains lessons on python and introduction to python

Setting up the virtual environment

Creating and entering the poetry virtual enviromment

poetry shell

Installing all dependencies

poetry install

Do a mypy check

mypy .

Do a python code lint with ruff fix

ruff --fix .

Do a black code format

black .