嵌入式 python 中的 Python print 不会向 cmd 显示任何内容
我有一个启动带有参数的 python 脚本的应用程序。 当脚本运行时,我在 cmd 上打印一些信息。 有趣的是,我在 cmd 上的打印功能中看不到任何内容。
如果我将 sys.stdout 重定向到一个文件,我会得到我想要打印的内容,这很奇怪。
我正在使用 python 2.6.4。
有人遇到过类似的事情吗?
I have an application that launches a python script with parameters.
When the script runs i print some info on the cmd.
The funny thing is that i can't see anything from the print function on the cmd.
If i redirect sys.stdout to a file i get what i want to print which is strange.
I'm using python 2.6.4.
Anyone encountered something similar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在 Windows 上使用 cmd.exe 吗?如果是这样,则尝试使用 python 打印时存在或仍然存在已知问题。我认为问题是 UTF-8 编码问题。我听说以下批处理文件将解决此问题(从未测试过)。
另外,值得检查您的输出是否确实被刷新,请尝试添加以下内容:
Are you using cmd.exe on windows? If so, there was or still is known problems trying to print to it using python. I believe the issue is a UTF-8 encoding problem. I have heard the following batch file will fix this issue (never tested).
Also its worth checking that your output is actually being flushed, try adding the following: