小兔网

Python3 File(文件) 方法 Python3 File(文件) 方法

概述

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

语法

tell() 方法语法如下:

fileObject.tell()

参数

返回值

返回文件的当前位置。

实例

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

文件 runoob.txt 的内容如下:

1:www.zhishitu.com2:www.zhishitu.com3:www.zhishitu.com4:www.zhishitu.com5:www.zhishitu.com

循环读取文件的内容:

实例(Python 3.0+)

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

以上实例输出结果为:

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

Python3 File(文件) 方法 Python3 File(文件) 方法