通过vscode执行python程序
配置
tasks.json
:ctrl + shifit + p
输入 Tasks: Configure Task Runner修改其中的内容:
{ /** 在原文中,使用的是Windows环境下 * 本文适用的是Linux */ "version": "0.1.0", // The command is tsc. Assumes that tsc has been installed using npm install -g typescript "command": "/usr/bin/python", // The command is a shell script "isShellCommand": true, // Show the output window only if unrecognized errors occur. "showOutput": "always", // args is the HelloWorld program to compile. "args": ["${file}"] }
ctrl + shift + B
执行