1 - Learn Python
To start programming with python you need an editor. I use visual studio code , but there are a lot of them out there!
This is a screenschot of Visual Studio Code:
First we go to extensions and install Python, then we create a new file with the extension .py (related to python).
Now we can write in our first project, the classic hello world.
print ("Hello World!")
Enjoy!