python处理txt文件的一种情况

在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

 

posted on 2018-12-01 22:08  一杯明月  阅读(374)  评论(0编辑  收藏  举报