Python 基础教程

Python 流程控制

Python 函数

Python 数据类型

Python 文件操作

Python 对象和类

Python 日期和时间

Python 高级知识

Python 参考手册

Python 文件 tell() 使用方法及示例

Python File(文件) 方法

概述

tell() 方法返回文件的当前位置,即文件指针当前位置。

语法

tell() 方法语法如下:

fileObject.tell()

参数

返回值

返回文件的当前位置。

示例

以下示例演示了 tell() 方法的使用:

文件 nhooo.txt 的内容如下:

1:www.cainiaojc.com
2:www.cainiaojc.com
3:www.cainiaojc.com
4:www.cainiaojc.com
5:www.cainiaojc.com

循环读取文件的内容:

# 打开文件
fo = open("nhooo.txt", "r")
print("文件名为: ", fo.name)
line = fo.readline()
print("读取的数据为: %s" % (line))
# 获取当前文件位置
pos = fo.tell()
print("当前位置: %d" % (pos))
# 关闭文件
fo.close()

以上示例输出结果为:

文件名为:  nhooo.txt
读取的数据为: 1:www.cainiaojc.com
当前位置: 17

Python File(文件) 方法