我正在用VSCode编写一个小的Python脚本。 我已经使用集成终端添加了Debug配置:
{
"name": "Python: Terminal (integrated)",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
脚本开始,调试器在所有断点处暂停。
我的代码中有几个raw_input()
。该应用程序仅捕获第一个raw_input()
的用户输入。调试器将遍历所有其他输入,并且输入始终为空字符串。
我正在Windows 10上使用32位Python 2.7.13。
通过发出python script.py
用户输入可以在powershell中执行脚本。仅当连接调试器时,问题才会发生。
我不知道这是否会影响行为。我还为VSCode安装了Platform.IO扩展。我知道该扩展程序基于Python(2.7)。