文件指针

打开文件时候,文件指针会指向文件开头。

打开文本文件时,文件指针自动指向文件起始处,之后会随读写内容移动,例如执行readline()读取文件某行内容时,文件指针首先会指向该行开始处,当readline()执行完毕后,文件指针会移动到该行的结尾处。seek()方法可以移动文件指针。它的使用方法如下:

                             <文件对象>.seek(offset[,whence])

seek()方法将文件指针移动到offset指定的位置。offset=0,则移动到文件起始位置;offset=1代表指针当前所在位置;offset=2,则移动到文件结尾。可选参数whence表示从哪个位置开始移动文件指针,默认值是0,表示默认从文件起始位置移动,1表示从当前位置移动,2表示从文件结尾处移动。

 

file = "file1.txt"
with open(file,"r") as file_obj:
    context = file_obj.readline()   # 指向hello world
    print(context)
    context = file_obj.readline()    # 指向python
    print(context)
    file_obj.seek(0)     # 指向文件开头 seek不接受关键字参数
    context = file_obj.readline()  # 指向helloworld
    print(context)

 

运行结果:

Hello World1

python

Hello World1

  

 

posted @ 2019-06-20 15:04  JayMu  阅读(1438)  评论(0编辑  收藏  举报