在 C\C++ 中嵌入 Python 时 Python 打印输出
如果 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在Python中,
print
语句写入sys.stdout
(这是标准输出),即使在嵌入式应用程序中,您也应该在启动应用程序的控制台中看到打印结果。In python, the
print
statement writes intosys.stdout
(which is the standard output) even in an embedded app, you should see your prints in the console that started the application.