Python File fileno() 方法
python file fileno() 方法
fileno() 方法返回一個(gè)整型的文件描述符(file descriptor fd 整型),可用于底層操作系統(tǒng)的 i/o 操作。
語(yǔ)法
fileno() 方法語(yǔ)法如下:
fileobject.fileno();
參數(shù)
無(wú)
返回值
返回文件描述符。
實(shí)例
以下實(shí)例演示了 fileno() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- # 打開(kāi)文件 fo = open("codebaoku.txt", "wb") print "文件名為: ", fo.name fid = fo.fileno() print "文件描述符為: ", fid # 關(guān)閉文件 fo.close()
以上實(shí)例輸出結(jié)果為:
文件名為: codebaoku.txt 文件描述符為: 3
相關(guān)文章
- Python 元組
- Python 異常處理
- Python2 與 Python3?? 版本區(qū)別
- Python 棧
- Python Deque
- Python 遞歸
- Python 樹(shù)遍歷算法
- Python 排序算法
- Python 圖算法
- Python 大O符號(hào)
- Python3 解釋器
- Python3 for while 循環(huán)語(yǔ)句
- Python3 函數(shù)
- Python3 輸入和輸出
- Python3 錯(cuò)誤和異常
- Python3 命名空間
- Python3 作用域
- Python3 SMTP發(fā)送郵件
- Python3 日期和時(shí)間
- Python3 內(nèi)置函數(shù)