Home > Backend Development > Python Tutorial > Python's File tell() method usage and function analysis (example)

Python's File tell() method usage and function analysis (example)

乌拉乌拉~
Release: 2018-08-16 17:36:27
Original
3559 people have browsed it

In today’s article, we will learn about the tell method in Python. Before entering the article, we must first know what pythontell() is, tell() Where can it be used in python programming and what role can it play. We can learn about these things in today’s article.

Overview

The tell() method returns the current position of the file, which is the current position of the file pointer.

Syntax

The tell() method syntax is as follows:

fileObject.tell(offset[, whence])
Copy after login

Return value

Returns the value of the file current location.

Example

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

The content of the file runoob.txt is as follows:

1:www.runoob.com
2:www.runoob.com
3:www.runoob.com
4:www.runoob.com
5:www.runoob.com
Copy after login

Loop to read the contents of the file:

#!/usr/bin/python
# -*- coding: UTF-8 -*-
# 打开文件
fo = open("runoob.txt", "rw+")
print "文件名为: ", fo.name
line = fo.readline()
print "读取的数据为: %s" % (line)
# 获取当前文件位置
pos = fo.tell()
print "当前位置: %d" % (pos)
# 关闭文件
fo.close()
Copy after login

The output result of the above example is:

文件名为:  runoob.txt
读取的数据为: 1:www.runoob.com
当前位置: 17
Copy after login

In this article, we explain what tell() is If you don’t understand the method, you can give it a try. 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 the Python tutorial column on the php Chinese website.

The above is the detailed content of Python's File tell() method usage and function analysis (example). 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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template