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的主要内容,如果未能解决你的问题,请参考以下文章