用Python对文件进行随机读写

Posted yk 坤帝

tags:

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

Illegal html tag removed : 获取当前读写的位置

公众号:yk 坤帝
后台回复 1800页资料 获取全部源代码

在读写文件的过程中,如果想知道当前的位置,可以使用tell()来获取

# 打开一个已经存在的文件 
f = open("test.txt", "r") 
str = f.read(3) 
print "读取的数据是 : ", str 
# 查找当前位置 
position = f.tell() 
print "当前文件位置 : ", position 
str = f.read(3) print "读取的数据是 : ", str 
# 查找当前位置 
position = f.tell() 
print "当前文件位置 : ", position 
f.close()

Illegal HTML tag removed : 定位到某个位置

如果在读写文件的过程中,需要从另外一个位置进行操作的话,可以使用seek()

seek(offset, from)有2个参数
offset:偏移量
from:方向

0:表示文件开头
1:表示当前位置
2:表示文件末尾

demo:把位置设置为:从文件开头,偏移5个字节

# 打开一个已经存在的文件 
f = open("test.txt", "r") 
str = f.read(30) 
print "读取的数据是 : ", str 

# 查找当前位置 
position = f.tell() 
print "当前文件位置 : ", position 

# 重新设置位置 
f.seek(5,0) 

# 查找当前位置 
position = f.tell() 
print "当前文件位置 : ", position 
f.close()

demo:把位置设置为:离文件末尾,3字节处

# 打开一个已经存在的文件 
f = open("test.txt", "r") 

# 查找当前位置 
position = f.tell() 
print "当前文件位置 : ", position 

# 重新设置位置 
f.seek(-3,2) 

# 读取到的数据为:文件最后3个字节数据 
str = f.read() 
print "读取的数据是 : ", str 
f.close()

公众号:yk 坤帝
后台回复 1800页资料 获取全部源代码

以上是关于用Python对文件进行随机读写的主要内容,如果未能解决你的问题,请参考以下文章

随机访问文件

随机访问文件

随机访问文件

python读写文件,如何将内容添加在文件开头呢

随机读写文件

lseek 与 ioctl