Python rsplit() 方法
Posted IT技术随笔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python rsplit() 方法相关的知识,希望对你有一定的参考价值。
描述
Python rsplit() 方法通过指定分隔符对字符串进行分割并返回一个列表,默认分隔符为所有空字符,包括空格、换行(\\n)、制表符(\\t)等。类似于 split() 方法,只不过是从字符串最后面开始分割。
语法
rsplit() 方法语法:
S.rsplit([sep=None][,count=S.count(sep)])
参数
- sep -- 可选参数,指定的分隔符,默认为所有的空字符,包括空格、换行(\\n)、制表符(\\t)等。
- count -- 可选参数,分割次数,默认为分隔符在字符串中出现的总次数。
返回值
返回分割后的字符串列表。
实例
以下实例展示了 rsplit() 方法的使用方法:
#!/usr/bin/python3 S = "this is string example....wow!!!" print (S.rsplit( )) print (S.rsplit(\'i\',1)) print (S.rsplit(\'w\'))
以上实例输出结果如下:
[\'this\', \'is\', \'string\', \'example....wow!!!\'] [\'this is str\', \'ng example....wow!!!\'] [\'this is string example....\', \'o\', \'!!!\']
以上是关于Python rsplit() 方法的主要内容,如果未能解决你的问题,请参考以下文章