描述
簡單的一鍵F5運行當前文件。
樣例
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: 當前文件",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"args": [],
"pythonPath": "${command:python.interpreterPath}"
}
]
}
常用
"cwd":執行代碼的路徑。
"args":參數。["--input", "", "--output", ""]
"pythonPath": "${command:python.interpreterPath}" //終端中的python。
也可以直接設置為conda虛擬環境中的python(python.exe的絕對路徑)