Python 字符串 splitlines() 方法

实例

将字符串拆分为一个列表,其中每一行都是一个列表项:

  1. txt = "Thank you for the music\nWelcome to the jungle"
  2. x = txt.splitlines()
  3. print(x)

定义和用法

splitlines() 方法将字符串拆分为列表。拆分在换行符处完成。


语法

  1. string.splitlines(keeplinebreaks)
参数值
参数描述
keeplinebreaks可选。规定是否应包含换行符(True)或不包含(False)。默认值不包含(False)。

更多实例

拆分字符串,但保留换行符:

  1. txt = "Thank you for the music\nWelcome to the jungle"
  2. x = txt.splitlines(True)
  3. print(x)

分类导航