python 004 执行环境对比

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 004 执行环境对比相关的知识,希望对你有一定的参考价值。

对比:os.system os.popen subprocess.Popen subprocess.call
为什么要搞这么多?
# --*--encoding: utf-8--*--
import os
import subprocess

os_system = os.system(dir)
print os_system
#只获取了返回值,如果获取输出需如下:
re = os.system(dir>C:\Users\Administrator\PycharmProjects\dir.txt)
print re
print open(C:\Users\Administrator\PycharmProjects\dir.txt,r).readlines()

re1 = os.popen(dir)
print re1.read()
print - * 20

re2 = subprocess.Popen(dir, shell=True, stdout=subprocess.PIPE)
print re2
print re2.stdout.read()

re3 = subprocess.call((dir,C:/Users/Administrator/PycharmProjects/),shell=True)
print re3

 

 

以上是关于python 004 执行环境对比的主要内容,如果未能解决你的问题,请参考以下文章

004-分布式账本技术对比

使用 Python 代码片段编写 LaTeX 文档

python基础_相似对比

python多线程

SAP WM 高阶之事务代码LX04里存储类型004的Load %

004.redis 的 RDB 和 AOF 两种持久化机制的优劣势对比