Rumah > Artikel > pembangunan bahagian belakang > Python的File tell()方法使用方法及作用解析(实例)
今天这篇文章我们来了解一下python之中的tell方法,在进入文章之前我们首先要知道pythontell()是什么,tell()它能用在python编程之中的什么地方,能够起到什么作用。这些东西我们都可以在今天的文章之中进行了解。
概述
tell() 方法返回文件的当前位置,即文件指针当前位置。
语法
tell() 方法语法如下:
fileObject.tell(offset[, whence])
返回值
返回文件的当前位置。
实例
以下实例演示了 tell() 方法的使用:
文件 runoob.txt 的内容如下:
1:www.runoob.com 2:www.runoob.com 3:www.runoob.com 4:www.runoob.com 5:www.runoob.com
循环读取文件的内容:
#!/usr/bin/python # -*- coding: UTF-8 -*- # 打开文件 fo = open("runoob.txt", "rw+") print "文件名为: ", fo.name line = fo.readline() print "读取的数据为: %s" % (line) # 获取当前文件位置 pos = fo.tell() print "当前位置: %d" % (pos) # 关闭文件 fo.close()
以上实例输出结果为:
文件名为: runoob.txt 读取的数据为: 1:www.runoob.com 当前位置: 17
在这次的文章之中,我们讲解了什么是tell() 方法,不明白的话可以动手去试一试,毕竟动手实践才是验证所学的最好的方法与途径。最后我也希望这篇文章能够给正在学习python的你带来一点帮助。
更多相关知识,请访问php中文网Python教程栏目。
Atas ialah kandungan terperinci Python的File tell()方法使用方法及作用解析(实例). Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!