Python splitlines()方法
Python splitlines()方法
Python splitlines() 按照行('\r', '\r\n', \n')分隔,返回一個包含各行作為元素的列表,如果參數(shù) keepends 為 False,不包含換行符,如果為 True,則保留換行符。
語法
splitlines()方法語法:
str.splitlines([keepends])
參數(shù)
- keepends -- 在輸出結(jié)果里是否保留換行符('\r', '\r\n', \n'),默認(rèn)為 False,不包含換行符,如果為 True,則保留換行符。
返回值
返回一個包含各行作為元素的列表。
實(shí)例
以下實(shí)例展示了splitlines()函數(shù)的使用方法:
#!/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)
以上實(shí)例輸出結(jié)果如下:
['ab c', '', 'de fg', 'kl'] ['ab c\n', '\n', 'de fg\r', 'kl\r\n']
相關(guān)文章
- Python Number 數(shù)字
- Python XML 解析
- Python 詞典
- Python 矩陣
- Python 堆
- Python3 字典(Dictionary)
- Python3 錯誤和異常
- Python exp() 函數(shù)
- 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()方法