What is python fileno()? What can python fileno() do?

乌拉乌拉~
Release: 2018-08-16 13:49:18
Original
3780 people have browsed it

In today’s article, we will learn aboutfileno()in python. Before entering the article, we must first know what we want to learn. It doesn’t matter if we don’t know. Because what we are talking about today ispythonfileno(), and I will explain to you what fileno() means. We can learn about these things in today’s article.

Overview

The fileno() method returns an integer file descriptor (file descriptor FD integer), which can be used for I/O operations of the underlying operating system

Syntax

The fileno() method syntax is as follows:

fileObject.fileno();
Copy after login

Return value

Return File descriptor.

Example

The following example demonstrates the use of the fileno() method:

#!/usr/bin/python # -*- coding: UTF-8 -*- # 打开文件 fo = open("runoob.txt", "wb") print "文件名为: ", fo.name fid = fo.fileno() print "文件描述符为: ", fid # 关闭文件 fo.close()
Copy after login

The output result of the above example is:

文件名为: runoob.txt文件描述符为: 3
Copy after login

In this article, we learned what fileno() is. If you don’t understand, you can actually try it yourself. After all, hands-on practice is the best way to verify what you have learned. Finally, I hope this article can bring some help to you who are learning python.

For more related knowledge, please visit thePython tutorialcolumn on the php Chinese website.

The above is the detailed content of What is python fileno()? What can python fileno() do?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!