码迷,mamicode.com
首页 > 编程语言 > 详细

Python文件操作

时间:2018-12-25 11:34:56      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:读一行   with   with open   文件   打开文件   readline   utf-8   truncate   for   

filename = ""
#打开文件:
f = open(filename,encoding = "UTF-8");

#读取文件内容:
content = f,read()

#打开模式:
‘r‘:只读
‘w‘:只写
‘a‘:追加
‘r‘:读写
‘w+‘:写读

#读一行:
f.readline()
#读多行:
f.readlines()

#遍历文件:
for line in f:
print(line)

#获取当前读取的光标位置:
loc = f.tell()

#移动光标到某个位置:
f.seek(index)

#强制写入硬盘:
f.flush()

#关闭文件:
f.close()

#清空文件:
f.truncate()

#修改文件:
for line in f:
line.replace(key,kwy2);

#一种可以自动关闭文件的打开方式:
with open(filename,‘r‘,encoding=‘UEF-8‘) as f:
print(f.read())

Python文件操作

标签:读一行   with   with open   文件   打开文件   readline   utf-8   truncate   for   

原文地址:https://www.cnblogs.com/erikchanBolg/p/10172490.html

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