码迷,mamicode.com
首页 > 其他好文 > 详细

【文件操作基础流程】

时间:2018-08-19 12:56:46      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:strong   文件操作   close   style   str   pen   流程   基础   nbsp   

【文件操作基础流程】


能调用的方法一定是对象 ┍ ┎ ┏ ┐ ┑ ┒ ┓ ─ ┄ ┼ ┼ │ ┌
li=[1,2,3]
li.append(‘2‘)


.read #读取模式
.write#写模式
                
f=open(‘wl‘,‘r‘,encoding=‘utf8‘) #打开文件wl      ‘r‘读取模式                     字符编码转‘UTF8‘
date=f.read()
print(date)
f.close() ‘关闭文件‘


f=open(‘wl‘,‘w‘,encoding=‘utf8‘) #打开文件wl ‘write‘(删除原有)并写入模式 字符编码转‘UTF8‘
date=f.write()
print(date)
f.close() ‘关闭文件‘



f=open(‘wl‘, ‘a‘,encoding=‘utf8‘) #打开文件wl ‘a‘代表追加写人模式 字符编码转‘UTF8‘

【文件操作基础流程】

标签:strong   文件操作   close   style   str   pen   流程   基础   nbsp   

原文地址:https://www.cnblogs.com/djkofwl/p/9500883.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!