黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python File fileno() 方法

python file fileno() 方法

python file 方法python file 方法

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

python file 方法python file 方法

下一節(jié):python file isatty() 方法

python 教程

相關(guān)文章