Python splitlines() 字符串方法
-
定义和用法
splitlines() 方方法将字符串拆分为列表。拆分在换行符处完成。 -
实例
将字符串拆分成一个列表,其中每一行都是一个列表项:
尝试一下txt = "Thank you for the music\nWelcome to the jungle" x = txt.splitlines() print(x)
-
句法
string.splitlines(keeplinebreaks)
-
参数值
参数 必需的 描述 keeplinebreaks 否 指定是否应包含换行符(真)或不包含(假)。 预设值不是(False) -
更多例子
分割字符串,但保持换行符:
尝试一下txt = "Thank you for the music\nWelcome to the jungle" x = txt.splitlines(True) print(x)
-