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

python之文件I/O

时间:2018-11-06 20:21:06      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:utf-8   包括   run   nbsp   lines   pat   com   method   encoding   

open(file, mode=‘r‘, encoding=None, ... ... )  #打开文件,返回file对象
file.close()  #关闭文件
file.read([size])  #读取指定字节数
file.readline([size])  #读取整行,包括“\n”字符
file.readlines([sizeint])  #读取所有行并返回列表
file.write(str)  #将字符串写入文件
file.writelines(sequence)  #向文件写入一个序列字符串列表(换行需自己加入换行符)
 
例如:
with open (path_in, ‘r‘, encoding=‘UTF-8‘) as f:
  for line in f.readlines():
    line = line.split()
    head = line[0]
 
参考:
http://www.runoob.com/python/file-methods.html

python之文件I/O

标签:utf-8   包括   run   nbsp   lines   pat   com   method   encoding   

原文地址:https://www.cnblogs.com/sbj123456789/p/9917590.html

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