I'm new to VSCode and I can't find anywhere the answer to an easy question:
how can I run a python script (let's say main.py) by creating configurations where I can set a specific working directory folder as well as arguments?
I see that by default the working directory, when running any file, is the workspace directory, but I'm not able to change it anyhow.
When using the Python Debugger, I can easily do that with the "cwd" option inside a configuration of the launch.json, and I want to be able to do the same to just run the code (... and debugging without any breakpoint is not the same, e.g. when there's parallel computation).
With PyCharm this is very easy, but not with VSCode perhaps?