Python splitlines()方法
Python splitlines()方法
Python splitlines() 按照行('\r', '\r\n', \n')分隔,返回一个包含各行作为元素的列表,如果参数 keepends 为 False,不包含换行符,如果为 True,则保留换行符。
语法
splitlines()方法语法:
str.splitlines([keepends])
参数
- keepends -- 在输出结果里是否保留换行符('\r', '\r\n', \n'),默认为 False,不包含换行符,如果为 True,则保留换行符。
返回值
返回一个包含各行作为元素的列表。
实例
以下实例展示了splitlines()函数的使用方法:
#!/usr/bin/python str1 = 'ab c\n\nde fg\rkl\r\n' print str1.splitlines(); str2 = 'ab c\n\nde fg\rkl\r\n' print str2.splitlines(True)
以上实例输出结果如下:
['ab c', '', 'de fg', 'kl'] ['ab c\n', '\n', 'de fg\r', 'kl\r\n']
相关文章
- Python Number 数字
- Python XML 解析
- Python 词典
- Python 矩阵
- Python 堆
- Python3 字典(Dictionary)
- Python3 错误和异常
- Python exp() 函数
- Python File readline() 方法
- Python File writelines() 方法
- Python os.fchdir() 方法
- Python os.fdopen() 方法
- Python os.isatty() 方法
- Python os.mkfifo() 方法
- Python os.popen() 方法
- Python os.tempnam() 方法
- Python decode()方法
- Python istitle()方法
- Python 字典 Dictionary len()方法
- Python 字典 Dictionary keys()方法