Python 字符串 splitlines() 方法
示例
将字符串拆分为一个列表,其中每行都是列表项
txt = "Thank you for the music\nWelcome to the jungle"
x = txt.splitlines()
print(x)
自己尝试 »
定义和用法
The splitlines()
方法将字符串拆分为一个列表。拆分在换行符处进行。
语法
string.splitlines(keeplinebreaks)
参数值
参数 | 描述 |
---|---|
keeplinebreaks | 可选。指定是否应包含换行符(True)还是不包含(False)。默认值为 False |
更多示例
示例
拆分字符串,但保留换行符
txt = "Thank you for the music\nWelcome to the jungle"
x = txt.splitlines(True)
print(x)
自己尝试 »