- Python 基础教程
- Python 简介
- Python 环境搭建
- Python 中文编码
- Python 基础语法
- Python 变量类型
- Python 运算符
- Python While 循环语句
- Python for 循环语句
- Python 循环嵌套
- Python break 语句
- Python continue 语句
- Python pass 语句
- Python 循环语句
- Python Number(数字)
- Python 字符串
- Python 列表(List)
- Python 元组
- Python 字典(Dictionary)
- Python 日期和时间
- Python 函数
- Python 模块
- Python 文件I/O
- Python File(文件) 方法
- Python 异常处理
- Python OS 文件/目录方法
- Python 内置函数
- Python 面向对象
- Python 正则表达式
- Python CGI编程
- python操作mysql数据库
- Python 网络编程
- Python SMTP发送邮件
- Python 多线程
- Python XML解析
- Python GUI编程(Tkinter)
- Python2.x与3.x版本区别
- Python IDE
- Python JSON
- Python 100例
- Python 命令行参数
- 推荐10 款最好的 Python IDE
Python os.popen() 方法
概述
os.popen() 方法用于从一个命令打开一个管道。
在Unix,Windows中有效
语法
popen()方法语法格式如下:
os.popen(command[, mode[, bufsize]])
参数
command -- 使用的命令。
-
mode -- 模式权限可以是 'r'(默认) 或 'w'。
-
bufsize -- 指明了文件需要的缓冲大小:0意味着无缓冲;1意味着行缓冲;其它正值表示使用参数大小的缓冲(大概值,以字节为单位)。负的bufsize意味着使用系统的默认值,一般来说,对于tty设备,它是行缓冲;对于其它文件,它是全缓冲。如果没有改参数,使用系统的默认值。
返回值
返回一个文件描述符号为fd的打开的文件对象
实例
以下实例演示了 popen() 方法的使用:
#!/usr/bin/python # -*- coding: UTF-8 -*- import os, sys # 使用 mkdir 命令 a = 'mkdir nwdir' b = os.popen(a,'r',1) print b
执行以上程序输出结果为:
open file 'mkdir nwdir', mode 'r' at 0x81614d0
关注微信小程序
扫描二维码
程序员编程王