我正在尝试运行var spaces = 0;
var height = 4;
while(height > 0) {
// repeat * symbol (not supported by internet explorer) easily replacable with a loop
// decrease height for next line with one less *, increate spaces for next line
var str = "*".repeat(height--);
var line = " ".repeat(spaces++) + str;
// replace with html write for your exmaple
console.log(line);
}
//output:
// ****
// ***
// **
// *
可执行文件,该可执行文件是应用程序(虚幻引擎)的插件。当我执行python
并执行CTRL + ALT + P
时,仅显示系统安装的python解释器和虚拟env。如何添加搜索路径?
答案 0 :(得分:1)
您可以在工作区的 settings.json 文件中添加python.pythonPath
设置。
来自Manually specify an interpreter:
如果VS Code没有自动找到您想要的解释器 使用时,您可以在“工作区设置”中手动设置其路径
settings.json
个文件。使用以下任何条目,您可以 只需将该行添加为其他现有设置的兄弟即可。)
例如,在 .vscode / settings.json 中:
{
"python.pythonPath": "/path/to/your/custom/python"
}
我建议在设置pythonPath
之后重新加载VS Code。如果可行,每次打开工作区时,它将自动使用该Python解释器。