Python File tell() 方法

Python File(文件) 方法 Python File(文件) 方法


概述

tell() 方法返回文件的當(dāng)前位置,即文件指針當(dāng)前位置。

語法

tell() 方法語法如下:

fileObject.tell(offset[, whence])

參數(shù)

返回值

返回文件的當(dāng)前位置。

實(shí)例

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

文件 youj.txt 的內(nèi)容如下:

1:m.hgci.cn
2:m.hgci.cn
3:m.hgci.cn
4:m.hgci.cn
5:m.hgci.cn

循環(huán)讀取文件的內(nèi)容:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

# 打開文件
fo = open("youj.txt", "rw+")
print "文件名為: ", fo.name

line = fo.readline()
print "讀取的數(shù)據(jù)為: %s" % (line)

# 獲取當(dāng)前文件位置
pos = fo.tell()
print "當(dāng)前位置: %d" % (pos)


# 關(guān)閉文件
fo.close()

以上實(shí)例輸出結(jié)果為:

文件名為:  youj.txt
讀取的數(shù)據(jù)為: 1:m.hgci.cn

當(dāng)前位置: 17

Python File(文件) 方法 Python File(文件) 方法