当前位置:
首页 > 编程开发 > Python基础教程 >
-
python基础教程之seek() 方法
本站最新发布 Python从入门到精通|Python基础教程
试听地址 https://www.xin3721.com/eschool/pythonxin3721/
用于移动文件的读取指针到指定位置
seek() 方法语法如下:
fileObject.seek(offset[,whence])
参数
offset --偏移量,也就是代表需要移动偏移的字节数
whence:可选,默认值为 0。表示要从哪个位置开始偏移;0代表从文件开头开始算起,1代表从当前位置开始算起,2代表从文件末尾算起。
如
with open("writeline.txt") as file2:
file2.seek(2)
print(file2.read())
truncate() 方法
用于截断文件并返回截断的字节长度
指定长度的话,就从文件的开头开始截断指定长度,其余内容删除;不指定长度的话,就从文件开头开始截断到当前位置,其余内容删除
可以用seek()方法,把指针定位到指定位置。
如
with open("newfile1.txt","r+") as file1:
file1.truncate(5)
with open("newfile1.txt") as file1:
print(file1.read())
with open("seek.txt","r+",encoding="gbk") as file1:
file1.seek(16)
file1.truncate()
file1.seek(0)
print(file1.read())
Tell方法
返回文件指针的当前位置
如
with open("writeline.txt","r") as file2:
print(file2.read())
print(file2.tell())
file2.close()
next() 方法
ython 3 中的 文件 对象不支持 next() 方法。 Python 3 的内置函数 next() 通过迭代器调用 __next__() 方法返回下一项。 在循环中,
next()方法会在每次循环中调用,该方法返回文件的下一行,如果到达结尾(EOF),则触发 StopIteration
如:
with open("china.txt","r",encoding="gbk") as file1:
num=len(file1.readlines())
file1.seek(0,0)
for index in range(num):
line = next(file1)
print ("第 %d 行 内容: %s" % (index, line))
试听地址 https://www.xin3721.com/eschool/pythonxin3721/
用于移动文件的读取指针到指定位置
seek() 方法语法如下:
fileObject.seek(offset[,whence])
参数
offset --偏移量,也就是代表需要移动偏移的字节数
whence:可选,默认值为 0。表示要从哪个位置开始偏移;0代表从文件开头开始算起,1代表从当前位置开始算起,2代表从文件末尾算起。
如
with open("writeline.txt") as file2:
file2.seek(2)
print(file2.read())
truncate() 方法
用于截断文件并返回截断的字节长度
指定长度的话,就从文件的开头开始截断指定长度,其余内容删除;不指定长度的话,就从文件开头开始截断到当前位置,其余内容删除
可以用seek()方法,把指针定位到指定位置。
如
with open("newfile1.txt","r+") as file1:
file1.truncate(5)
with open("newfile1.txt") as file1:
print(file1.read())
with open("seek.txt","r+",encoding="gbk") as file1:
file1.seek(16)
file1.truncate()
file1.seek(0)
print(file1.read())
Tell方法
返回文件指针的当前位置
如
with open("writeline.txt","r") as file2:
print(file2.read())
print(file2.tell())
file2.close()
next() 方法
ython 3 中的 文件 对象不支持 next() 方法。 Python 3 的内置函数 next() 通过迭代器调用 __next__() 方法返回下一项。 在循环中,
next()方法会在每次循环中调用,该方法返回文件的下一行,如果到达结尾(EOF),则触发 StopIteration
如:
with open("china.txt","r",encoding="gbk") as file1:
num=len(file1.readlines())
file1.seek(0,0)
for index in range(num):
line = next(file1)
print ("第 %d 行 内容: %s" % (index, line))
栏目列表
最新更新
如何使用OS模块中的stat方法
Python os 模块
seek() 方法
python打开文件实例1
Python写入文件
什么是流?
文件操作如何进制逐行读取
Python相对路径
with创建临时运行环境
Python文件操作
.Net Standard(.Net Core)实现获取配置信息
Linux PXE + Kickstart 自动装机
Shell 编程 基础
Shell 编程 条件语句
CentOS8-网卡配置及详解
Linux中LVM逻辑卷管理
1.数码相框-相框框架分析(1)
Ubuntu armhf 版本国内源
Linux中raid磁盘阵列
搭建简易网站
access教程之Access简介
mysql 安装了最新版本8.x版本后的报错:
Mysql空间数据&空间索引(spatial)
如何远程连接SQL Server数据库的图文教程
复制SqlServer数据库的方法
搜索sql语句
sql中返回参数的值
sql中生成查询的模糊匹配字符串
数据定义功能
数据操作功能