嵌入式 python 中的 Python print 不会向 cmd 显示任何内容

发布于 2024-11-02 21:26:36 字数 186 浏览 0 评论 0原文

我有一个启动带有参数的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

追我者格杀勿论 2024-11-09 21:26:36

您在 Windows 上使用 cmd.exe 吗?如果是这样,则尝试使用 python 打印时存在或仍然存在已知问题。我认为问题是 UTF-8 编码问题。我听说以下批处理文件将解决此问题(从未测试过)。

set PYTHONIOENCODING=UTF-8
cmd /u /k chcp 65001
set PYTHONIOENCODING=
exit

另外,值得检查您的输出是否确实被刷新,请尝试添加以下内容:

import sys
sys.stdout.flush()

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).

set PYTHONIOENCODING=UTF-8
cmd /u /k chcp 65001
set PYTHONIOENCODING=
exit

Also its worth checking that your output is actually being flushed, try adding the following:

import sys
sys.stdout.flush()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文