首页 > 其他 > 详细

学习笔记:第二天

时间:2018-11-04 22:47:58      阅读:147      评论:0      收藏:0      [点我收藏+]

文件操作

with open(‘day2‘,‘w‘,encoding=‘utf-8‘) as f:
f.write(‘ndjafnglsf马翁‘)
with open(‘day2‘,‘r+‘,encoding=‘utf-8‘) as e:
print(e.read())
data = e.truncate(4)
print(data)
with open(‘day2‘,‘rb‘)as g:
h =g.read()
print(h)
print(h.decode(‘utf-8‘))
with open(‘day2‘,‘wb‘)as i :
i.write(bytes(‘阿瑟东‘,encoding=‘utf-8‘))
with open(‘day2‘,‘r‘,encoding=‘utf-8‘) as e:
print(e.read())
e.seek(3)
print(e.tell())

学习笔记:第二天

原文:https://www.cnblogs.com/mwb1112/p/9906129.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!