当我使用code-runner执行我的python代码时,它在“ Output” 中显示了经过的时间。
[Done] exited with code=0 in 179.605 seconds
我切换到使用终端,我不再知道我的程序需要执行多长时间。
我知道我可以手动设置计时器并打印它。
但是在 .vscode / settings.json 中是否可以选择?
"code-runner.executorMap": {
"python": "$pythonPath $fullFileName",
}
"code-runner.runInTerminal": true
或其他任何方式。我已经看到它像下面的图片一样完成。
答案 0 :(得分:1)
在终端机上尝试time python <your_python_file.py>
。