文件定位
Posted byh7595
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件定位相关的知识,希望对你有一定的参考价值。
filename = "./by.txt"
objFile = open(filename,"r+") #需要从末尾定义时,须使用“rb”模式
# 读取5个 .read
str = objFile.read(5)
print("当前字符串读取的为:",str)
# 指出当前光标位置 .tell
posi = objFile.tell()
print("光标当前的位置是:",posi)
# 重新把光标定位到某个位置 .seek(0,0)
position = objFile.seek(2,0)
print("重新把光标定义的位置:",position)
str = objFile.read(20)
print("当前字符串:",str)
以上是关于文件定位的主要内容,如果未能解决你的问题,请参考以下文章