发布于2019-08-07 10:02 阅读(658) 评论(0) 点赞(1) 收藏(2)
open():打开
file:文件的位置(路径)
mode:操作文件模式
encoding:文件编码方式
f :文件句柄
f = open("1.txt",mode = 'r',encoding = 'utf-8')
print(f.read())
f.close
r,w,a(重要)
rb,wb,ab(次要)
r+,w+,a+
f = open('1.txt','r')
print(f.read()) #全部读取
print(f.read(5))#按照字符进行读取,前5个
print(f.readline())#读取一行内容,自动换行
print(f.readline().strip())#拖\n
print(f.readlines())#一行一行读,存为列表
#解决大文件:
for i in f:
print(i)#本质就是一行一行进行读取
f = open('1.txt','w',encoding='utf-8')
f.write('13030308\n')
f.write('456456\n')
f.close()
#在源文件的基础上进行添加
f = open('1.txt','a',encoding='utf-8')
f.write('13030308\n')
f.write('456456\n')
f.close()
#rb:
f1 = open('1.jpg','rb')
print(f1.read())
print(f1.read(3))#按照字节读取,读取前3个字节
#wb:
f = open('3.jpg','wb')
f.write(f1.read())
#ab:
f = open('2.jpg','ab')
f.write('你好啊',encode = 'utf-8')
#错误示范
f = open('1.txt','r+')
#f = write('cx你太美')
#print(f.read())
#正确
print(f.read())
f = write('cx你太美')
#读不到内容
f = open('1.txt','w+')
f = write('cx你太美')#光标问题
print(f.read())
#读不到内容
f = open('1.txt','a+')
f = write('cx你太美')#光标问题
print(f.read())
print(f.tell())#显示光标位置,返回的是字节数
f.seek(0)#移动光标
f =open('1.txt','r','utf-8')
#for i in f:
s = f.read()
s1 = s.replace('12','45')
f.close()
f1 =open('1.txt','w','utf-8')
f1.write(s1)
f1.close()
with open('1.txt','r','utf-8') as f,\
open('1.1.txt','w','utf-8') as f1:
for i in f:
s1 =i.replace('12','45')
f1.write(s1)
import os
os.rename('1.txt','1.bak')
os.rename('1.1.txt','1.txt')
绝对路径方式打开文件
路径转义:
1."\"
2.r"C:\user\net"
f = open("E:\\python\\oldboy\\py\\190715",'r','utf-8')
#路径转义:1.'\\'
#2.r。-->repr():数据的原形态
#s = "[1,2,'3',4]"
#print(s)
#print(repr(s))#--显示数据原形态
f = open(r"E:\python\oldboy\py\190715",'r','utf-8')
print(f.read())
f.close()
f = open("../190713/1.txt",'r','utf-8')
print(f.read())
f.close()
#推荐使用相对路径
作者:3434erer
链接:https://www.pythonheidong.com/blog/article/9617/4cdaa71a6a67b393ca98/
来源:python黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 python黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-1
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!