本文主要是介绍使用vscode编写python突然报错,求求各位大佬来看看,救救孩子,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用vscode编写python时,input函数的错误
1.当launch.json文件的 console的配置为 internalConsole 时
此时使用input函数报的错误为EOFError :EOF when reading a line
当launch.json文件中 console 的配置为 externalTerminal 或者是 integratedTerminal 时
在这两种配置下,编写python代码使用input()函数时所报错误为 RuntimeError :input(): lost sys.stdout
综上,使用vscode编写python时只在使用input函数时出现了这两种错误,编写其他的代码是没有任何问题。希望得到解决方案。
这篇关于使用vscode编写python突然报错,求求各位大佬来看看,救救孩子的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!