python-将多行文件合并为一个字符串
作者:互联网
您好,我正在制作一个包含文件的python程序.我希望将此设置为单个字符串.我当前的代码是:
with open('myfile.txt') as f:
title = f.readline().strip();
content = f.readlines();
文本文件(简体)为:
Title of Document
asdfad
adfadadf
adfadaf
adfadfad
我要剥离标题(程序执行此操作),然后使其余的字符串成为字符串.现在的输出是:
['asdfad\n', 'adfadadf\n', ect...]
而且我要:
asdfadadfadadf ect...
我是python的新手,我花了一些时间试图弄清楚这个问题,但找不到有效的解决方案.任何帮助,将不胜感激!
解决方法:
你可以这样做:
with open('/tmp/test.txt') as f:
title=f.next() # strip title line
data=''.join(line.rstrip() for line in f)
标签:file-io,python 来源: https://codeday.me/bug/20191122/2061363.html