Python rsplit() 方法
阿新 • • 發佈:2017-11-06
字符串 python3 split() 使用 html 展示 輸出 制表符 count
描述
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() 方法