python文件操作之open,read,write实例讲解
程序员文章站
2022-04-19 18:50:01
1、open
#open(filepath , 'mode')
file = open(‘D:\test\test.txt’,&lsqu...
1、open
#open(filepath , 'mode')
file = open(‘D:\test\test.txt’,‘w’) #存在问题见FAQ1
一般常用模式:r(只读)、w(只写)、a(追加)、b(二进制)
组合:r+(读写)、w+(读写) #存在问题见FQA2
2、读文件(r): read() readline() readlines()
file = open('D/test/test.txt','r') #只读模式打开file
all_txt = file.read() #读全部
one_line_txt = file.readline() #读一行
all_line_txt = file.readlines() #读所有行
3、读固定字节文件
file = open('D/test/test.txt','b') #只读模式打开file
200_byte = file.read(200)
4、写文件(w)
file = open('D/test/test.txt','w') #只写模式打开file
input= file.write('11111')
list = ['1111','22222','33333']
input_lines = file.writelines(list) #写入的参数放入一个列表中,写多行
上一篇: Jquery读取URL参数小例子
推荐阅读
-
Python中操作文件之write()方法的使用教程
-
在Python中操作文件之read()方法的使用教程
-
python之从文件读取数据到list的实例讲解
-
Python3之文件读写操作的实例讲解
-
python文件操作之目录遍历实例分析
-
python文件操作之open,read,write实例讲解
-
Python读写文件参数详解 open read write
-
python2.7 open一个文本文件r+模式read()和write()不能同时使用
-
linux gnu c 复制文件实例(open,close,creat,read,write)
-
Python中操作文件之write()方法的使用教程