I want to debug a project written in Python 3 in Visual Studio Code, but I can\'t seem to find any way of specifying interpreter or Python version in the launch.json file.>
To debug Python projects in Visual Studio Code, use the Launch Configuration as below:
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${cwd}/{filename}.py",
"args" : [
"--arg1", "arg1-value",
"--arg2", "arg2-value",
"--arg3", "arg3-value"
],
"console": "integratedTerminal"