美文网首页
Python 入门

Python 入门

作者: 音视频直播技术专家 | 来源:发表于2018-01-23 11:06 被阅读67次

    Python 调用 Shell 脚本

    准备 shell 脚本 hello.sh

    #! /usr/bin/ssh
    echo "hello world!"
    echo "succeed"
    

    使用os.system方法

    #! /usr/local/bin/python
    import os
    v_return_status=os.system( 'sh hello.sh')
    print "v_return_status=" +str(v_return_status)
    

    输出结果:

    hello world!
    succeed
    v_return_status=0
    

    使用os.popen方法

    无返回终端,只打印输出内容

    • 获取shell print 语句内容一次性打印
    p=os.popen('sh  hello.sh') 
    x=p.read()
    print x 
    p.close()
    

    输出结果:

    hello world!
    succeed
    
    • 获取shell print 语句内容,按照行读取打印
    p=os.popen('sh  hello.sh') 
    x=p.readlines()
    for line in x:
        print 'ssss='+line
    

    输出结果:

    ssss=hello world!
    ssss=succeed
    

    使用commands.getstatusoutput() 方法

    该方法可以获得到返回值和输出,非常好用。

    -使用 commands.getstatusoutput() 方法获得到返回值和输出

    (status, output) = commands.getstatusoutput('sh hello.sh')
    print status, output
    

    输出结果:

    0 hello world!
    succeed
    

    Python for 循环

    for line in x:
        print line
    

    特别需要注意的地方:

    • for 语句的后面一定要有 ':'
    • for 循环里的执行语句前面一定要缩进。

    相关文章

      网友评论

          本文标题:Python 入门

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