如何将字符串转换为列表,按字符串'\ n \ n \ n \ n \ n'拆分?

时间:2016-04-16 08:33:56

标签: python string list

我有一个带文字的字符串,其中有\ n。像:

"Information moreinformation moreinformation \n\n\n\n\n Information moreinformation moreinformation \n\n\n\n\n Information moreinformation moreinformation"

现在我需要一个列表,按\ n \ n \ n \ n \ n字符串拆分。所以我想:

['Information moreinformation moreinformation', 'Information moreinformation moreinformation', 'Information moreinformation moreinformation']

我已经尝试过了,但这不起作用。然后我还有一个字符串。

with open ("file.txt", "r") as file:
    content = file.readlines()
    content = ' '.join(content)
    content.split('\n\n\n\n\n')

print (content)

1 个答案:

答案 0 :(得分:0)

   content =  content.split('\n\n\n\n\n')

试试这个。否则,您没有更改内容变量的数据类型。