问题:用vscode运行python时,要么在下面的终端打字符串
python test.py
要么用鼠标点击在终端运行按钮,所以想用快捷键保存之后直接按快捷键运行
解决:配置.vscode文件
这个.vscode文件不知道怎么生成的。。。
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "python",
"type": "shell",
"command": "python",
"args": ["${file}"],
"group": {
"kind": "build",
"isDefault": true
}
}
],
}
这是新配置好的文件,以后就可以用ctrl+shift+b运行了
欢迎在评论区中进行批评指正,转载请注明来源,如涉及侵权,请联系作者删除。