2021-07-31 python 文本文档的读写

2021-07-31 python 文本文档的读写

#文件的打开  <变量名>=open(<文件名>,<打开模式>)
#open() 函数用于打开一个文件,创建一个 file 对象

#'r',只读模式,如果文件不存在,返回异常
op=open('E:\\a.txt','r')
op.close()
#'w',覆盖写模式,文件不存在则创建,存在则完全覆盖源文件
#op=open('E:\\a.txt','w')
op.close()
#'x',创建写模式,文件不存在则创建,存在则返回异常FileExistsError
#op=open('E:\\a.txt','x')
op.close()
#'a',追加写模式,文件不存在则创建,存在则在原文件最后追加内容
op=open('E:\\a.txt','a')
op.close()
#'b',二进制文件模式
#op=open('E:\\a.txt','b')
op.close()
#'t',文本文件模式,默认值
op=open('E:\\a.txt')
op.close()
#'+',与r/w/x/a一同使用,在原功能基础上增加同时读写功能
op=open('E:\\a.txt','r+')
op.close()

2021-07-31 python 文本文档的读写

#读操作
#(1)<file>.read(size=-1),从文件中读入整个文件内容
op=open('E:\\a.txt','r')

r=op.read().split('\n')
for i in r:
    print(i)
op.close()
print()

#(2)<file>.readline(size=-1),从文件中读入一行内容
op=open('E:\\a.txt','r')

rl=op.readline().split('\n')
for i in rl:
    print(i)
op.close()
print()

#(3)<file>.readlines(hint=-1),从文件中读入所有行,以每行为元素形成一个列表
op=open('E:\\a.txt','r')

rls=op.readlines()
for i in rls:
    print(i,end='')

上一篇:JavaScript - 关闭当前窗口 - Scripts may close only the windows that were opened by them.


下一篇:SQLAlchmey 排序、模糊查询