将子进程输出存储在字符串中
在 Python 中执行系统调用时,将结果存储在字符串中以供进一步操作变得至关重要。本文探讨了如何在 Python 中使用 subprocess.Popen 有效地实现此目的。
考虑下面的示例:
import subprocess # Create a Popen object to execute the ntpq command p2 = subprocess.Popen("ntpq -p")
要将此命令的输出存储在字符串中,有两个主要方法方法:
方法1:subprocess.check_output(Python 2.7或Python 3)
此函数将 Popen 与通信处理结合起来,以字符串形式返回 stdout 输出。
from subprocess import check_output # Execute the command and store the output in a string out = check_output(["ntpq", "-p"])
方法 2:通信 (Python 2.4-2.6)
对于较旧的 Python 版本,通信方法是
import subprocess # Create a Popen object with stdout connected to a pipe p = subprocess.Popen(["ntpq", "-p"], stdout=subprocess.PIPE) # Read the stdout output and store it in a string out, err = p.communicate()
请注意,该命令应以列表形式提供,因为 Popen 不会调用 shell。
以上是如何在 Python 中有效地将子进程输出存储为字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!