摘要: (一)大文件操作 1、打开文件,关闭文件 (1)一般打开文件,关闭文件: f = open('user.txt') f.close() (2)用with open()语句会自动打开文件和关闭文件,自动管理上下文。 with open('user.txt',encoding='utf-8') as f 阅读全文
posted @ 2020-08-27 21:17 翔梦hong 阅读(396) 评论(0) 推荐(0) 编辑