Python os.read() 方法
python os.read() 方法
os.read() 方法用于從文件描述符 fd 中讀取最多 n 個字節,返回包含讀取字節的字符串,文件描述符 fd對應文件已達到結尾, 返回一個空字符串。
在unix,windows中有效
語法
read()方法語法格式如下:
os.read(fd,n)
參數
- fd -- 文件描述符。
- n -- 讀取的字節。
返回值
返回包含讀取字節的字符串
實例
以下實例演示了 read() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 打開文件 fd = os.open("f1.txt",os.o_rdwr) ???? # 讀取文本 ret = os.read(fd,12) print ret # 關閉文件 os.close(fd) print "關閉文件成功!!"
執行以上程序輸出結果為:
this is test 關閉文件成功!!