首页 > 其他 > 详细

上下文管理器

时间:2021-04-24 00:36:50      阅读:24      评论:0      收藏:0      [点我收藏+]

文件上下文管理器自动关闭文件

"""
with open() as 名字
student.txt
hello world
word ppt excel
?
"""
## 读取student的内容复制到b中
with open("student.txt","r") as f,open("b.txt","w+") as f2:
   f2.write(f.read())
   f2.seek(0,0)##因为读取后指针在最后所以需要将指针移动到开头
   print(f2.read())

 

上下文管理器

原文:https://www.cnblogs.com/continue-student/p/14694970.html

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