python脱产4期内容整理NO.8
2021-06-21 17:05
标签:readline 必须 概念 utf-8 strip() fan medium tab inpu 一,文件处理的模式基本概念 打开文件的模式有三种:r(默认),w ,a 控制操作文件内容格式的两种模式:t(默认),b 操作文件内容格式不能单独使用,必须与纯净模式结合 二,打开文件模式 详解 1.r是只读模式:文件不存在时会报错,文件存在时文件指针位于文件开头部分 with open(‘a.txt‘,mode=’rt‘,encoding=’utf-8‘)as f: print(f.readlines()) 2.w是只写模式:在文件不存在时,会建立新文件,文件存在时内容会删除旧文件, 文件指针在文件开头 with open(‘a.txt‘,mode=’rt‘,encoding=’utf-8‘)as f: print(f.writable()) print(f.readable()) print(f.writelb‘你好\n‘) print(f.writeble‘我好,\n’) print(f.writelb‘大家好,\n’) 注册功能: 3.a之追加写模式:在文件不存在时会创建空文件,存在时文件指针会停留在末尾 r+ w+ a+ b读写都是以二进制为单位 with open(’1.png‘,mode=’rb‘)as f 拷贝工具 name=input(‘username>>>:‘).strip()
ppwd=input(‘password>>>:‘).strip()
with open(‘abl.txt‘,mode=‘at‘,encoding=‘utf-8‘) as f:
info=‘%s:%s\n‘%(name,pwd)
f.write(info)
with open(‘c.txt’,mode=‘at’,endoding=utf-8‘) as f:
f.write(‘111\n‘)
f.write(‘222\n‘)
print(f.readable())
print(f.writable)
with open(‘a.txt‘,mode=‘r+t‘,encoding=‘utf-8) as f
print(f.readable())
print(f.writable())
print(f.readline())
f.write(‘你好’)
with open(‘b.txt‘,mode=’ab‘)as f
data=f.read()
#print(data,type(data))
print(data.decode(’utf-8‘))
data=f.read()
print(data)
src_file=input(‘源文件路径:‘).strip()
dst_file=input(’目标文件:‘).strip()
with open(r‘%s % src_file,mode=‘rb‘) us read(r‘%s % dst_file,mode=‘wb‘) as write_f:
for line in read_f
write_f.write(line)
上一篇:python装饰器(备忘)
下一篇:python 内置函数
文章标题:python脱产4期内容整理NO.8
文章链接:http://soscw.com/index.php/essay/96993.html