2018年12月1日
摘要: 在txt文本中,以换行符作为标记分段处理txt文件中的内容的方法: with open(path, 'r', encoding='utf-8') as f: for line in f: if line!='\n': print(line,end='') else: break 阅读全文
posted @ 2018-12-01 22:08 一杯明月 阅读(374) 评论(0) 推荐(0) 编辑
摘要: def join(self, iterable): # real signature unknown; restored from __doc__ """ S.join(iterable) -> str Return a string which is the concatenation of th 阅读全文
posted @ 2018-12-01 21:06 一杯明月 阅读(1320) 评论(0) 推荐(0) 编辑