File函数 中的 file.tell()函数

首页 / Python2入门教程 / File函数 中的 file.tell()函数

Python file tell()返回文件中文件读/写指针的当前位置。

file.tell() - 语法

fileObject.tell()

file.tell() - 返回值

此方法返回文件中文件读/写指针的当前位置。

file.tell() - 示例

以下示例显示Tell()方法的用法。

This is 1st line
This is 2nd line
This is 3rd line
This is 4th line
This is 5th line
#!/usr/bin/python

# Open a file
fo=open("foo.txt", "rw+")
print "Name of the file: ", fo.name

# Assuming file has following 5 lines
# This is 1st line
# This is 2nd line
# This is 3rd line
# This is 4th line
# This is 5th line

line=fo.readline()
print "Read Line: %s" % (line)

# Get the current position of the file.
pos=fo.tell()
print "Current Position: %d" % (pos)

# Close opend file
fo.close()

当无涯教程运行上面的程序时,它产生以下输出-

链接:https://www.learnfk.comhttps://www.learnfk.com/python/file-tell.html

来源:LearnFk无涯教程网

Name of the file:  foo.txt
Read Line: Python is a great language.

Current Position: 28

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

赵成的运维体系管理课 -〔赵成〕

机器学习40讲 -〔王天一〕

数据结构与算法之美 -〔王争〕

Electron开发实战 -〔邓耀龙〕

微信小程序全栈开发实战 -〔李艺〕

爆款文案修炼手册 -〔乐剑峰〕

零基础实战机器学习 -〔黄佳〕

Kubernetes入门实战课 -〔罗剑锋〕

现代React Web开发实战 -〔宋一玮〕

好记忆不如烂笔头。留下您的足迹吧 :)