python 文件处理seek

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 文件处理seek相关的知识,希望对你有一定的参考价值。

myFile=open("score.txt",‘w‘)
print("Name "+myFile.name)
print("Mode "+myFile.mode)
myFile.write("GBJ: 100\nKHD : 99\nBBB :89")
myFile.close()


#Read the file
myFile2=open("score.txt",‘r‘)
print("Reading...\n" + myFile2.read(8)) #read 10
myFile2.seek(0)                                  #重新设置起始位置,在这里等同于myFile2.close()
print("Reading again..." + myFile2.read(8))

  

以上是关于python 文件处理seek的主要内容,如果未能解决你的问题,请参考以下文章

如何使用Python 3中的帮助功能查看文件处理函数文档?

Python 文件 seek() 方法

python 文件操作seek() 和 telll() 自我解释

Python 文件操作seek()函数

python3_文件操作中file.seek()方法

Python中的seek函数 指针 使用教程