<bdo id='uWCnW'></bdo><ul id='uWCnW'></ul>

    <small id='uWCnW'></small><noframes id='uWCnW'>

  1. <tfoot id='uWCnW'></tfoot>
    <legend id='uWCnW'><style id='uWCnW'><dir id='uWCnW'><q id='uWCnW'></q></dir></style></legend>
    <i id='uWCnW'><tr id='uWCnW'><dt id='uWCnW'><q id='uWCnW'><span id='uWCnW'><b id='uWCnW'><form id='uWCnW'><ins id='uWCnW'></ins><ul id='uWCnW'></ul><sub id='uWCnW'></sub></form><legend id='uWCnW'></legend><bdo id='uWCnW'><pre id='uWCnW'><center id='uWCnW'></center></pre></bdo></b><th id='uWCnW'></th></span></q></dt></tr></i><div id='uWCnW'><tfoot id='uWCnW'></tfoot><dl id='uWCnW'><fieldset id='uWCnW'></fieldset></dl></div>

      合并 Python 脚本的子进程的 stdout 和 stderr,同时保持它们可区分

      Merging a Python script#39;s subprocess#39; stdout and stderr while keeping them distinguishable(合并 Python 脚本的子进程的 stdout 和 stderr,同时保持它们可区分)
      <legend id='EYBit'><style id='EYBit'><dir id='EYBit'><q id='EYBit'></q></dir></style></legend>

            <bdo id='EYBit'></bdo><ul id='EYBit'></ul>

              <tbody id='EYBit'></tbody>

          • <small id='EYBit'></small><noframes id='EYBit'>

          • <tfoot id='EYBit'></tfoot>
            <i id='EYBit'><tr id='EYBit'><dt id='EYBit'><q id='EYBit'><span id='EYBit'><b id='EYBit'><form id='EYBit'><ins id='EYBit'></ins><ul id='EYBit'></ul><sub id='EYBit'></sub></form><legend id='EYBit'></legend><bdo id='EYBit'><pre id='EYBit'><center id='EYBit'></center></pre></bdo></b><th id='EYBit'></th></span></q></dt></tr></i><div id='EYBit'><tfoot id='EYBit'></tfoot><dl id='EYBit'><fieldset id='EYBit'></fieldset></dl></div>

              1. 本文介绍了合并 Python 脚本的子进程的 stdout 和 stderr,同时保持它们可区分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我想将 python 脚本的子进程的标准输出和标准输入定向到同一个文件中.我不知道如何使两个来源的线条可区分?(例如,在 stderr 中的行前加上感叹号.)

                I would like to direct a python script's subprocess' stdout and stdin into the same file. What I don't know is how to make the lines from the two sources distinguishable? (For example prefix the lines from stderr with an exclamation mark.)

                在我的特殊情况下,不需要实时监控子进程,正在执行的 Python 脚本可以等待其执行结束.

                In my particular case there is no need for live monitoring of the subprocess, the executing Python script can wait for the end of its execution.

                推荐答案

                tsk = subprocess.Popen(args,stdout=subprocess.PIPE,stderr=subprocess.STDOUT)
                

                subprocess.STDOUT 是一个特殊的标志告诉 subprocess 将所有 stderr 输出路由到 stdout,从而组合您的两个流.

                subprocess.STDOUT is a special flag that tells subprocess to route all stderr output to stdout, thus combining your two streams.

                顺便说一句,select 在 Windows 中没有 poll().subprocess 只使用文件句柄号,不会调用你的文件输出对象的 write 方法.

                btw, select doesn't have a poll() in windows. subprocess only uses the file handle number, and doesn't call your file output object's write method.

                要捕获输出,请执行以下操作:

                to capture the output, do something like:

                logfile = open(logfilename, 'w')
                
                while tsk.poll() is None:
                    line = tsk.stdout.readline()
                    logfile.write(line)
                

                这篇关于合并 Python 脚本的子进程的 stdout 和 stderr,同时保持它们可区分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Pythonic and efficient way of finding adjacent cells in grid(在网格中查找相邻单元格的 Pythonic 和有效方法)
                map a hexagonal grid in matplotlib(在 matplotlib 中映射六边形网格)
                Execute arbitrary python code remotely - can it be done?(远程执行任意 python 代码 - 可以吗?)
                Python - Plotting colored grid based on values(Python - 根据值绘制彩色网格)
                Is there a GUI design app for the Tkinter / grid geometry?(是否有 Tkinter/网格几何图形的 GUI 设计应用程序?)
                tkinter Canvas Scrollbar with Grid?(带有网格的 tkinter 画布滚动条?)
                • <bdo id='5npCe'></bdo><ul id='5npCe'></ul>

                    <small id='5npCe'></small><noframes id='5npCe'>

                    <legend id='5npCe'><style id='5npCe'><dir id='5npCe'><q id='5npCe'></q></dir></style></legend>
                      <tbody id='5npCe'></tbody>

                        <tfoot id='5npCe'></tfoot>
                      • <i id='5npCe'><tr id='5npCe'><dt id='5npCe'><q id='5npCe'><span id='5npCe'><b id='5npCe'><form id='5npCe'><ins id='5npCe'></ins><ul id='5npCe'></ul><sub id='5npCe'></sub></form><legend id='5npCe'></legend><bdo id='5npCe'><pre id='5npCe'><center id='5npCe'></center></pre></bdo></b><th id='5npCe'></th></span></q></dt></tr></i><div id='5npCe'><tfoot id='5npCe'></tfoot><dl id='5npCe'><fieldset id='5npCe'></fieldset></dl></div>