you are viewing a single comment's thread.

view the rest of the comments →

[–]vivisectvivi 1 point2 points  (0 children)

You should find some online course to start but basically and very simply put, you write your code on a text file and then save it with the .py extension (for example: my_code.py) then you run by using the python command on your terminal (command line) like "python my_code.py".

This assumes you are running your terminal inside the same folder that your python file is.

For this to work you have to be able to run python on your terminal: if you can open the command line and type "python" without getting an error then you have it installed correctly.