标签: python python-3.x printing stream
有没有一种方法可以检查我的python程序是否在特定的流上打印了一些内容?
答案 0 :(得分:0)
对于python 3.x,您可以尝试
print('print this stuff') import sys sys.stdout.write('print this stuff')