Python
中执行系统命令常见的几种方法
(1) os.system
#
这个方法是直接调用标准
C
的
system()
函数,仅仅在一个子终端运行系统命令,而不
能获取命令执行后的返回信息。
os.system(command) -> exit_status
Execute the command (a string) in a subshell.
#
如果再命令行下执行,结果直接打印出来
(2) os.popen
#
该方法不但执行命令还返回执行后的信息对象,是通过一个管道文件将结果返回。
popen(command [, mode='r' [, bufsize]])
->
pipeOpen a pipe to/from a command
returning a file object.
例如:
好处在于:将返回的结果赋于一变量,便于程序的处理。
(3)
使用模块
commands
模块
(status,result) = commands.getstatusoutput(cmd)
status
返回命令执行的返回值
result
返回命令执行结果