例如:
将字符串拆分为一个列表,其中每一行都是一个列表元素:
txt = "Thank you for the music\nWelcome to the jungle"
x = txt.splitlines()
print(x)
1、定义和用法
splitlines()
方法将字符串拆分为一个列表。 拆分以换行符作为分隔符。
2、调用语法
string.splitlines(keeplinebreaks)
3、参数说明
参数 | 描述 |
keeplinebreaks | 可选的。 指定最终分隔后的结果列表中的元素是否包含换行符, 默认值为 |
4、使用示例
例如:
分割字符串,但保持换行符:
txt = "Thank you for the music\nWelcome to the jungle"
x = txt.splitlines(True)
print(x)