示例测试文件(print.py):
import sys
print('stdout')
print('stderr', file=sys.stderr)
运行它的代码(x.py):
import subprocess
cmd = ['python', 'print.py']
print(subprocess.check_output(cmd, universal_newlines=True, stderr=subprocess.STDOUT))
如果我从shell运行print.py,它会首先打印stdout。但是,如果我运行x.py,它会先打印stderr。有没有办法让我以正确的顺序获得输出?
答案 0 :(得分:3)
您的代码正在缓冲(即延迟)其输出。缓冲区过程的详细信息根据输出是控制台还是管道而有所不同。
试试这个:
cmd = ['python', '-u', 'print.py']
参考: https://docs.python.org/3.5/using/cmdline.html#cmdoption-u