Python os.popen() 方法
python os.popen() 方法
os.popen() 方法用于從一個(gè)命令打開(kāi)一個(gè)管道。
在unix,windows中有效
語(yǔ)法
popen()方法語(yǔ)法格式如下:
os.popen(command[, mode[, bufsize]])
參數(shù)
- command -- 使用的命令。
- mode -- 模式權(quán)限可以是 'r'(默認(rèn)) 或 'w'。
- bufsize -- 指明了文件需要的緩沖大?。?意味著無(wú)緩沖;1意味著行緩沖;其它正值表示使用參數(shù)大小的緩沖(大概值,以字節(jié)為單位)。負(fù)的bufsize意味著使用系統(tǒng)的默認(rèn)值,一般來(lái)說(shuō),對(duì)于tty設(shè)備,它是行緩沖;對(duì)于其它文件,它是全緩沖。如果沒(méi)有改參數(shù),使用系統(tǒng)的默認(rèn)值。
返回值
返回一個(gè)文件描述符號(hào)為fd的打開(kāi)的文件對(duì)象
實(shí)例
以下實(shí)例演示了 popen() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 使用 mkdir 命令 a = 'mkdir nwdir' b = os.popen(a,'r',1) print b
執(zhí)行以上程序輸出結(jié)果為:
open file 'mkdir nwdir', mode 'r' at 0x81614d0
相關(guān)文章
- Python 簡(jiǎn)介
- Python 循環(huán)語(yǔ)句
- Python 列表 List
- Python 模塊
- Python File 方法
- Python 面向?qū)ο?/a>
- Python SMTP發(fā)送郵件
- Python2 與 Python3?? 版本區(qū)別
- Python 數(shù)組
- Python 矩陣
- Python 哈希表
- Python 搜索樹(shù)
- Python 堆
- Python 圖形
- Python 排序算法
- Python 大O符號(hào)
- Python 攤銷(xiāo)分析
- Python3 字符串(String)
- Python3 模塊
- Python3 命名空間