我刚刚安装了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")
我希望能够在编辑器中提示输入时输入一个值,但无法输入。
答案 0 :(得分:0)
您可以从终端上调用脚本,例如
python yourScript.py
或
C:\ Python27 \ python.exe C:.. \ yourScript.py