首页 > 后端开发 > Python教程 > 如何在不显示屏幕的情况下在 Python 中捕获系统命令输出并将其分配给变量?

如何在不显示屏幕的情况下在 Python 中捕获系统命令输出并将其分配给变量?

Linda Hamilton
发布: 2024-12-17 18:49:20
原创
368 人浏览过

How to Capture and Assign System Command Output to a Variable in Python without Screen Display?

将 os.system 的输出分配给变量,同时抑制屏幕显示

在 Python 中,os.system 用于执行系统命令并返回一个值指示命令的退出状态。但是,命令的输出通常显示在屏幕上。在某些情况下这可能并不理想。

要将命令输出分配给变量并防止其显示在屏幕上,可以使用 os.popen() 函数而不是 os.system。 os.popen() 返回一个管道对象,您可以使用它来读取命令的输出。

import os

# Use os.popen to capture the output of the command
popen_object = os.popen('cat /etc/services')

# Read the output from the pipe object
output = popen_object.read()

# Print the output, which will not be displayed on the screen
print(output)
登录后复制

或者,您可以使用更强大的 subprocess.Popen 类来管理子进程并与子进程通信。以下是使用 subprocess.Popen 获得相同结果的方法:

import subprocess

# Create a subprocess object
proc = subprocess.Popen(['cat', '/etc/services'], stdout=subprocess.PIPE)

# Communicate with the subprocess and retrieve its output
output, _ = proc.communicate()

# Print the output, which will not be displayed on the screen
print(output)
登录后复制

以上是如何在不显示屏幕的情况下在 Python 中捕获系统命令输出并将其分配给变量?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板