栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

python-基本文件操作

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

python-基本文件操作

创建和打开文件

open()方法用于打开一个文件,并返回文件对象,在对文件进行处理过程都需要使用这个函数,如果该文件无法被打开,会抛出OSError错误。

使用open()方法一定要保证关闭文件对象,即调用close()方法。

open()函数常用形式是接收两个参数:文件名(file)和模式(mode)

#读取指定字符串
with open("d:\PmStudywenjian.txt","r",encoding="utf-8") as file:
    string = file.read(3) #读取前面三个,不写数字代表读取全部
    print(string)
#读取文件中的部分内容
with open("d:\PmStudywenjian.txt","r",encoding="utf-8") as file:
    file.seek(2) #从第二个字符开始读
    string = file.read(4)
    print(string)
#读取文件中的一行数据
with open("d:\PmStudywenjian.txt","r",encoding="utf-8") as file:
    number=0
    while True:
        number+=1
        line=file.readline()
        if line=="":
            break
        print(number,line,end="n")

#读取文件中的所有行
with open("d:\PmStudywenjian.txt","r",encoding="utf-8") as file:
   message=file.readlines() #读取所有行
   print(message)

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/829747.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号