在 C\C++ 中嵌入 Python 时 Python 打印输出

发布于 2024-11-06 14:38:46 字数 105 浏览 0 评论 0原文

如果 print 语句位于 Python 函数中(在嵌入式 Python 配置中从 C\C++ 调用),Python print 会输出到哪里?

Where does Python print to, if the print statement is in a python function, called from C\C++ in an embedded Python configuration?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

岁月静好 2024-11-13 14:38:46

在Python中,print语句写入sys.stdout(这是标准输出),即使在嵌入式应用程序中,您也应该在启动应用程序的控制台中看到打印结果。

In python, the print statement writes into sys.stdout (which is the standard output) even in an embedded app, you should see your prints in the console that started the application.

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