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

python处理txt文件的一种情况

时间:2018-12-01 23:31:43      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:src   内容   txt   encoding   with open   path   gif   img   style   

在txt文本中,以换行符作为标记分段处理txt文件中的内容的方法:

技术分享图片
with open(path, r, encoding=utf-8) as f:
    for line in f:
        if line!=\n:
            print(line,end=‘‘)
        else:
            break
View Code

 

python处理txt文件的一种情况

标签:src   内容   txt   encoding   with open   path   gif   img   style   

原文地址:https://www.cnblogs.com/yibeimingyue/p/10051286.html

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