我正在使用code runner对vscode扩展来运行python文件,并删除当我运行代码时出现的路径,请帮助我。Img
1tuwyuhd1#
"code-runner.executorMap": { "python": "python3 $fileName" },
在settings.json下(点击ctrl + shift + p并键入settings.json),我添加了这个命令,它并没有完全消除任何输出,但它大大减少了。你也可以使用"python": "$pythonPath $fullFileName"来获得更长的输出,但如果你的Python路径发生变化,你会保存麻烦。示例可在其Configuration部分中找到:https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner
ctrl + shift + p
"python": "$pythonPath $fullFileName"
Configuration
1条答案
按热度按时间1tuwyuhd1#
在settings.json下(点击
ctrl + shift + p
并键入settings.json),我添加了这个命令,它并没有完全消除任何输出,但它大大减少了。你也可以使用"python": "$pythonPath $fullFileName"
来获得更长的输出,但如果你的Python路径发生变化,你会保存麻烦。示例可在其
Configuration
部分中找到:https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner