美文网首页
Python subprocess 模块

Python subprocess 模块

作者: Canon_2020 | 来源:发表于2020-04-21 09:44 被阅读0次
    # 获取 Windows 系统执行命令后的标准输出及错误数据
    stdout, stderr = subprocess.Popen(
        new_cmd, stdout=subprocess.PIPE,
        stderr=subprocess.PIPE
        ).communicate()
    print(stdout)
    
    
    
    
    

    相关文章

      网友评论

          本文标题:Python subprocess 模块

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