PyCharm 1.x / 2.x 是否提供调试控制台?
在调试模式下,我需要使用交互式控制台来检查不同变量的值,而不是依赖于监视窗口。
有这样的功能吗?
谢谢
// 已更新 PyCharm 2.0 //
您可以通过按控制台输出窗口工具栏中的“显示命令行”按钮来调用它,这在页面 http://www.jetbrains.com/pycharm/webhelp/debug-tool-window-console.html
In the debug mode, I need to use interactive console to check values of different variables instead of depending on watch window.
Is there such a function out there?
Thank you
// Updated for PyCharm 2.0 //
You can invoke it by pressing 'Show command line' button in a toolbar of console output window, which is described in online help on page http://www.jetbrains.com/pycharm/webhelp/debug-tool-window-console.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。调试工具窗口的左侧工具栏中有一个按钮,用于显示正在调试的进程中的控制台。
Yes. There's a button in the left toolbar of the Debug toolwindow that shows the console in the process being debugged.
如果您转到“工具”->“运行 Python 控制台,它将导入您的项目,但不确定这是否是您所需要的。否则,在实时调试时,您可以使用调试视图进行观察和检查。
If you go to Tools -> Run Python Console it will import your project, but not sure that is what you need. Other wise while live debugging you can watch and inspect with the debug view.