首页 > 代码库 > python里的splitlines详解
python里的splitlines详解
Python的split方法函数可以分割字符串成列表,默认是以空格作为分隔符sep来分割字符串。
In [1]: s = "www jeapedu com" In [2]: print s.split() [‘www‘, ‘jeapedu‘, ‘com‘]
当然可以改变sep分割字符串为其他字符串。
In [6]: t = "www.jeapedu.com" In [7]: print t.split(".") [‘www‘, ‘jeapedu‘, ‘com‘]
splitlines(...) S.splitlines(keepends=False) -> list of strings Return a list of the lines in S, breaking at line boundaries. Line breaks are not included in the resulting list unless keepends is given and true.splitlines函数什么意思呢?
In [8]: u = "www.jeapedu.com\nwww.chinagame.me\nwww.quanzhan.org" In [9]: print u.splitlines() [‘www.jeapedu.com‘, ‘www.chinagame.me‘, ‘www.quanzhan.org‘]这个例子不好,因为用split(‘\n‘)也可以分割成上面的结果。
In [13]: u = "www.jeapedu.com\nwww.chinagame.me\nwww.quanzhan.org" In [14]: print u.split("\n") [‘www.jeapedu.com‘, ‘www.chinagame.me‘, ‘www.quanzhan.org‘]结果一样,但是下面的测试用例就必须用splitlines了。
t = ‘‘‘www.jeapedu.com www.chinagame.me www.quanzhan.org ‘‘‘ print t.splitlines()
程序结果如下所示:
[‘www.jeapedu.com‘, ‘ www.chinagame.me‘, ‘ www.quanzhan.org‘]
结果不太好,用strip函数去掉字符串前后的空格。
好,至此splitlines的基本使用已经解析完成,那splitlines里的参数keepends又是什么意思呢?
t = ‘‘‘www.jeapedu.com www.chinagame.me www.quanzhan.org ‘‘‘ print t.splitlines() print t.splitlines(True)默认splitelines参数keepends为False,意思是不保留每行结尾的\n, 而keepends为True时,分割的每一行里尾部会有\n。
总结,splitlines是按行分割字符串,返回值也是个列表。
-----------------------------------------------------------
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。