Python 字符串 splitlines() 方法
Python基础 2022-06-06 15:22:25小码哥的IT人生shichen
Python 字符串 splitlines() 方法
实例
将字符串拆分为一个列表,其中每一行都是一个列表项:
txt = "Thank you for your visiting\nWelcome to China"
x = txt.splitlines()
print(x)
完整实例:
txt = "Thank you for the music\nWelcome to the jungle"
x = txt.splitlines()
print(x)
定义和用法
splitlines() 方法将字符串拆分为列表。拆分在换行符处完成。
语法
string.splitlines(keeplinebreaks)
参数值
参数 | 描述 |
---|---|
keeplinebreaks | 可选。规定是否应包含换行符(True)或不包含(False)。默认值不包含(False)。 |
更多实例
示例代码:
拆分字符串,但保留换行符:
txt = "Thank you for your visiting\nWelcome to China"
x = txt.splitlines(True)
print(x)
完整实例:
txt = "Thank you for the music\nWelcome to the jungle"
x = txt.splitlines(True)
print(x)