使用子进程将脚本输出定向到文件?
在 python 脚本(“main.py”)中,我使用 subprocess 模块来运行另一个脚本(“sub_script.py”)。
这是“main.py”脚本中“运行”“sub_script.py”的代码:
subprocess.Popen([sys.executable, "sub_script.py"])
只要“sub_script.py”中没有任何“print”语句,它就可以正常工作。
我现在想将“sub_script.py”的所有输出传输到外部文件(“log.txt”)。
我该怎么做?
From within a python script ("main.py"), I am using the subprocess module to run another script ("sub_script.py").
Here's the code in the "main.py" script that 'runs' "sub_script.py":
subprocess.Popen([sys.executable, "sub_script.py"])
this works fine as long as "sub_script.py" does not have any "print" statements in it.
I now want to channel all the output of "sub_script.py" to an external file ("log.txt").
How do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)