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()

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

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

Current Position: 28

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

技术教程推荐

朱赟的技术管理课 -〔朱赟〕

Go语言从入门到实战 -〔蔡超〕

说透敏捷 -〔宋宁〕

分布式金融架构课 -〔任杰〕

说透芯片 -〔邵巍〕

朱涛 · Kotlin编程第一课 -〔朱涛〕

超级访谈:对话玉伯 -〔玉伯〕

快速上手C++数据结构与算法 -〔王健伟〕

云原生基础架构实战课 -〔潘野〕

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