I was wondering if you can directly open them by clicking on something, etc. So you dont have to write the whole "cd (directory)" then "python (filename)". On Windows you can do this simply by double clicking the file, but I don't know for linux.
Thanks in advance.
python filenameto run a script - see stackoverflow.com/questions/15587877/…#!/usr/bin/pythonas the first line of your Python script, make it executable (chmod a+x file.py), then enter the path to run it. Probably you can do so directly from your file explorer (not sure), but you can certainly create a launcher for it.