Python/ref string splitlines
来自菜鸟教程
<languages />
Python字符串splitlines()方法
例
将字符串拆分为一个列表,其中每一行都是一个列表项:
txt = "Thank you for the music\nWelcome to the jungle" x = txt.splitlines() print(x)
定义和用法
The
splitlines()
方法将字符串拆分为列表。拆分在换行符处完成。
句法
string.splitlines(keeplinebreaks)
参数值
参数 | 描述 |
---|---|
keeplinebreaks | 可选的。指定是否应包含换行符(真)或不包含(假)。预设值不是(False) |
更多例子
例
分割字符串,但保持换行符:
txt = "Thank you for the music\nWelcome to the jungle" x = txt.splitlines(True) print(x)