os.system和os.popen的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了os.system和os.popen的区别相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python                                  

#coding:utf-8                                          

                                                       

import os,sys                                          

print os.system("dir")         #只执行命令,不保存结果            

print os.popen("dir").read()     #执行结果存到内存               

print sys.path               #输出标准库和第三方库路径           


本文出自 “YHT的运维笔记” 博客,请务必保留此出处http://yht1990.blog.51cto.com/9014030/1941034

以上是关于os.system和os.popen的区别的主要内容,如果未能解决你的问题,请参考以下文章

python os.system、os.popen、subprocess.Popen的区别

python中os.popen, os.system()区别

os.system和os.popen函数

python os.system()和os.popen()

Python之os.popen和os.system

[py] os.system os.popen commands 执行shell