有没有办法在Visual Studio Code中更改编辑器的只读设置?

时间:2019-05-03 13:19:11

标签: python windows visual-studio

我刚刚安装了VS Code,并尝试在其上测试一个接受原始输入值的基本python计算器,但是由于显示消息Cannot edit in read-only editor,因此我无法在编辑器中写入任何输入。有没有办法更改此设置或绕开它并以其他方式输入值?

这是计算器:

degC = input("What is the temp in Celsius?")

degF = int(degC) * 9/5 + 32

print (str(degC) + " degrees Celsius = " + str(degF) + " degrees Fahrenheit")

我希望能够在编辑器中提示输入时输入一个值,但无法输入。

1 个答案:

答案 0 :(得分:0)

您可以从终端上调用脚本,例如

  

python yourScript.py

  

C:\ Python27 \ python.exe C:.. \ yourScript.py

在这里看看:How to Run a Python Script via a File or the Shell