美文网首页
python 執行系統命令

python 執行系統命令

作者: 阿o醒 | 来源:发表于2016-10-25 11:06 被阅读16次

    这里介绍一下python执行shell命令的四种方法:

    1. os模块中的os.system()这个函数来执行shell命令
    os.system('ls')
    

    注,这个方法得不到shell命令的输出。

    1. popen()#这个方法能得到命令执行后的结果是一个字符串,要自行处理才能得到想要的信息。
    import os
    str = os.popen("ls").read()
    a = str.split("\n")
    for b in a:
        print b
    

    这样得到的结果与第一个方法是一样的。

    1. commands模块#可以很方便的取得命令的输出(包括标准和错误输出)和执行状态位
    import commands
    a,b = commands.getstatusoutput('ls')
    

    commands.getstatusoutput(cmd)返回(status,output)
    commands.getoutput(cmd)只返回输出结果
    commands.getstatus(file)返回ls -ld file 的执行结果字符串,调用了getoutput,不建议使用这个方法。

    相关文章

      网友评论

          本文标题:python 執行系統命令

          本文链接:https://www.haomeiwen.com/subject/upjruttx.html