You can find all the examples here what we have made in the class. You can copy-paste the code snippets into the console or you can save the whole repository by clicking on the "release" button in the menu.
To run a code file, navigate with your terminal (or cmd.exe on windows) into the actual directory íou previously downloaded the codes in. Run the following command:
python makker_python_00.py
In case you are using cmd.exe, you can list the actual files with dir command and change the directory with cd command like: You want to naviget to c:\User\Public\Downloads from d:\ and want to run a python file with the name: example.py
c:
cd User\Public\Downloads
python example.py
You want to navigate into your own Downloads directory and run example.py:
cd ~/Downloads
python example.py