Python 文件 fileno()方法

Python 文件 fileno()方法

fileno()方法返回整数文件描述符,该描述符由底层实现用于从操作系统请求I/O操作。

语法

fileno()方法的语法如下:

fileObject.fileno()

参数

NA

返回值

该方法返回整数型文件描述符。

示例

下面的示例展示了fileno()方法的用法。

# Open a file
fo = open("foo.txt", "wb")
print ("Name of the file: ", fo.name)
fid = fo.fileno()
print ("File Descriptor: ", fid)

# Close the opened file
fo.close()

当我们运行上面的程序时,它产生以下输出结果 –

Name of the file: foo.txt
File Descriptor: 3

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程