Python 字符串 splitlines() 方法
实例
将字符串拆分为一个列表,按行分割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 the music\nWelcome to the jungle" x = txt.splitlines(True) print(x)运行示例»