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

python文件处理小方法

时间:2017-10-28 11:06:45      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:encode   cti   div   name   txt   pen   ret   join   文件处理   

文件打开

1 contents = open("file_name.txt","rb").read().decode("gbk").encode("utf8")
1 def open_dict(Dict, path):
2     paths = os.path.join(path,Dict)
3     dictionary = open(paths,"rb").read().decode("utf8")
4     return(dictionary.split("\n"))

 

python文件处理小方法

标签:encode   cti   div   name   txt   pen   ret   join   文件处理   

原文地址:http://www.cnblogs.com/250apples/p/7745900.html

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