with open(f,'r',encoding='utf-8') as file:
file.seek(10)# 定位到文件中的第10个字节,10个字节之后开始读取
content = file.read(100) # 读取100个字节的内容
print('content:\n',content)
打印结果:
未截取的,全部内容
1200001
1233331
1244441
0000121
1200001
1233331
第10个字节截取
content:
233331
1244441
0000121
1200001
1233331