在numpy.core.defchararray.rpartition()函数中,arr中的每个元素都将元素拆分为sep的最后一次出现,并返回3个字符串,其中包含分隔符之前的部分,分隔符本身以及分隔符之后的部分。如果找不到分隔符,则返回3个包含字符串本身的字符串,然后返回两个空字符串。
用法: numpy.core.defchararray.rpartition(arr, sep)
参数:
arr:[数组,{str,unicode}]给定输入数组。
sep:[str或unicode] Right-most分隔符,用于拆分数组中的每个元素。
Return:[ndarray]返回str或unicode的输出数组,具体取决于输入类型
代码1:
Python3
# Python program explaining
# numpy.char.rpartition() function
# importing numpy as geek
import numpy as geek
arr = "GeeksforGeeks - A computer science portal for geeks"
sep = 'None'
gfg = geek.char.rpartition(arr, sep)
print (gfg)
输出:
[” ” ‘GeeksforGeeks - A computer science portal for geeks’]
代码2:
Python3
# Python program explaining
# numpy.char.rpartition() function
# importing numpy as geek
import numpy as geek
arr = "GeeksforGeeks - A computer science portal for geeks"
sep = 'science'
gfg = geek.char.rpartition(arr, sep)
print (gfg)
输出:
[‘GeeksforGeeks - A computer ‘ ‘science’ ‘ portal for geeks’]
相关用法
- Numpy string less()用法及代码示例
- Numpy string translate()用法及代码示例
- Numpy string strip()用法及代码示例
- Numpy string zfill()用法及代码示例
- Python numpy string partition()用法及代码示例
- Numpy string rstrip()用法及代码示例
- Python numpy string not_equal()用法及代码示例
- Python numpy string less_equal()用法及代码示例
- Numpy string index()用法及代码示例
- Numpy string find()用法及代码示例
- Numpy string count()用法及代码示例
- Numpy string rfind()用法及代码示例
- Python numpy string greater_equal()用法及代码示例
- Numpy string greater()用法及代码示例
- Numpy string lstrip()用法及代码示例
- Numpy string equal()用法及代码示例
- Python numpy string replace()用法及代码示例
- Numpy string isdigit()用法及代码示例
- Numpy string isupper()用法及代码示例
- Numpy string split()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 Numpy string operations | rpartition() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。