使用 exec 执行一段 python 代码,捕获其所有输出?

发布于 2024-10-15 17:36:37 字数 71 浏览 1 评论 0原文

执行一堆 Python 代码(例如 exec mycode)并将其打印到 stdout 的所有内容捕获到字符串中的好方法是什么?

What's a good way to exec a bunch of python code, like exec mycode, and capture everything it prints to stdout into a string?

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

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

发布评论

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

评论(1

差↓一点笑了 2024-10-22 17:36:37

尝试替换默认的 sys.stdout,如以下代码片段所示:

import sys
from StringIO import StringIO

buffer = StringIO()
sys.stdout = buffer

exec "print 'Hello, World!'"

#remember to restore the original stdout!
sys.stdout = sys.__stdout__

print buffer.getvalue()

Try replacing the default sys.stdout, like in this snippet:

import sys
from StringIO import StringIO

buffer = StringIO()
sys.stdout = buffer

exec "print 'Hello, World!'"

#remember to restore the original stdout!
sys.stdout = sys.__stdout__

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