Python String rpartition() 方法將給定字符串分成三部分。 rpartition()從右側開始尋找分隔符,直到找到分隔符並返回一個元組,其中包含分隔符之前的字符串、分隔符之後的部分。
Python 字符串 rpartition() 方法語法
用法: string.rpartition(separator)
Parameters :
- separator - 在第一次出現時分隔字符串。
返回值:
- 它返回分隔符之前的字符串部分、分隔符參數本身以及分隔符之後的部分(如果在字符串中找到分隔符參數)。
- 它返回兩個空字符串,如果在字符串中找不到分隔符,則返回給定的字符串。
示例1:Python String rpartition()方法的基本用法
這裏我們演示Python String rpartition()方法的基本用法
Python3
# String need to split
string1 = "Geeks@for@Geeks@is@for@geeks"
string2 = "Ram is not eating but Mohan is eating"
# Here '@' is a separator
print(string1.rpartition('@'))
# Here 'is' is separator
print(string2.rpartition('is'))
輸出:
('Geeks@for@Geeks@is@for', '@', 'geeks') ('Ram is not eating but Mohan ', 'is', ' eating')
示例 2:當分隔符不存在時,對字符串使用 rpartition() 方法
Python String rpartition() 如果字符串中不存在分隔符,方法將前 2 個參數返回為空字符串
Python3
# String need to split
string = "Sita is going to school"
# Here 'not' is a separator which is not
# present in the given string
print(string.rpartition('not'))
輸出:
('', '', 'Sita is going to school')
使用 Python 字符串時出現異常 rpartition()
類型錯誤:如果未提供分隔符參數,則會引發TypeError
Python3
# Python3 code explaining TypeError
# in rpartition()
string = "Bruce Waine is Batman"
# Nothing is passed as separator
print(string.rpartition())
輸出:
Traceback (most recent call last): File "/home/e207c003f42055cf9697001645999d69.py", line 7, in print(str.rpartition()) TypeError: rpartition() takes exactly one argument (0 given)
ValueError:如果分隔符是空字符串,則 rpartition() 方法引發 ValueError
Python3
string = "Bruce Waine is Batman"
# Nothing is passed as separator
print(string.rpartition(""))
輸出:
Traceback (most recent call last): File "/home/c8d9719625793f2c8948542159719007.py", line 7, in print(str.rpartition("")) ValueError: empty separator
相關用法
- Python String rpartition()用法及代碼示例
- Python String rpartition方法用法及代碼示例
- Python String rjust()用法及代碼示例
- Python String rstrip()用法及代碼示例
- Python String replace()用法及代碼示例
- Python String rfind()用法及代碼示例
- Python String rindex()用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String replace方法用法及代碼示例
- Python String rsplit方法用法及代碼示例
- Python String rjust方法用法及代碼示例
- Python String rstrip方法用法及代碼示例
- Python String rindex方法用法及代碼示例
- Python String rfind方法用法及代碼示例
- Python String format()用法及代碼示例
- Python String capitalize()用法及代碼示例
- Python String center()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python String count()用法及代碼示例
- Python String endswith()用法及代碼示例
- Python String expandtabs()用法及代碼示例
- Python String encode()用法及代碼示例
- Python String find()用法及代碼示例
- Python String index()用法及代碼示例
- Python String isalnum()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Python String rpartition() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。