gpt4 book ai didi

python - 如何将文件的输出通过管道传递给 Python 中的变量?

转载 作者:太空狗 更新时间:2023-10-30 00:30:40 26 4
gpt4 key购买 nike

如何将文件的输出通过管道传递给 Python 中的变量?

这可能吗?假设将 netstat 的输出通过管道传递给 Python 中的变量 x?

最佳答案

这是可能的。见:

http://docs.python.org/library/subprocess.html#replacing-bin-sh-shell-backquote

在 Python 2.4 及更高版本中:

from subprocess import *
x = Popen(["netstat", "-x", "-y", "-z"], stdout=PIPE).communicate()[0]

关于python - 如何将文件的输出通过管道传递给 Python 中的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3153460/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com