微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

python获取函数执行过程中产生的标准输出

import traceback
from io import StringIO
import sys


class Capturing(list):
    def __enter__(self):
        self._stdout = sys.stdout
        # 将err、out输出到内存中
        sys.stderr = sys.stdout = self._stringio = StringIO()
        return self

    def __exit__(self, *args):
        self.extend(self._stringio.getvalue().splitlines())
        # 释放内存
        del self._stringio
        sys.stdout = self._stdout


def test():
    print('asdfadfafafsdf')


with Capturing() as output:
    print('hello world')
    try:
        1 / 0
    except Exception as e:
        traceback.print_exc()

test()
print('output:', output)

参考链接:https://www.it1352.com/1990598.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐