Python3 执行Linux Bash命令的三种方法
程序员文章站
2022-03-25 08:01:54
和之前C++执行Linux Bash命令 一样,Python依然支持system调用和popen()函数来执行linux bash命令。
方法一:system调用
#仅仅在...
和之前C++执行Linux Bash命令 一样,Python依然支持system调用和popen()函数来执行linux bash命令。
方法一:system调用
#仅仅在一个子终端运行系统命令,而不能获取命令执行后的返回信息 import os os.system('ls')
方法二:popen()函数
import os os.popen('ls').readlines() #这个返回值是一个list
方法三.使用模块 subprocess
import subprocess subprocess.call('ls') #可以直接call()调用 ''' #也可以使用subprocess.Popen p = subprocess.Popen('ls', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) for line in p.stdout.readlines(): print(line) '''
上一篇: 寒冬潮袭:2018互联网公司年度大裁员
下一篇: struts2 s标签