码迷,mamicode.com
首页 > 编程语言 > 详细

Python文件读写

时间:2020-03-20 17:11:00      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:对象   obj   txt   object   nes   读文件   资源   close   mys   

Python读文件

方法一:open()创建文件对象  .read()方法读文件 .close()关闭文件对象

file_object = open("2.txt") #open()创建文件对象
contents = file_object.readlines()
print(contents)
file_object.close()#文件使用完毕后必须关闭,因为文件对象会占用操作系统资源

 

方法二:通过with open语句 由于文件使用完毕后必须关门,Python引入了with open自动调用close()方法

file  = "2.txt"
with open(file) as file_oj:
    contents = file_oj.readlines() #readlines()返回以列表格式的全部文件内容  readline返回文件每一行内容
    print(contents)

 

Python写文件

with open(file,‘w‘) as file_oj: #同样使用with open语句 ‘w‘代表文件写入 
file_oj.write("i love python\n")
file_oj.write("i love mysql\n")

 

with open(file,‘a‘) as file_oj: #‘a‘代表以追加的方式写入内容
file_oj.write("i love you\n")

 

2020-03-20 16:40

Python文件读写

标签:对象   obj   txt   object   nes   读文件   资源   close   mys   

原文地址:https://www.cnblogs.com/fuyusheng/p/12532648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!