在numpy.core.defchararray.partition()函數中,arr中的每個元素都將元素拆分為sep的第一個匹配項,並返回3個字符串,其中包含分隔符之前的部分,分隔符本身以及分隔符之後的部分。如果找不到分隔符,則返回3個包含字符串本身的字符串,然後返回兩個空字符串。
用法: numpy.core.defchararray.partition(arr, sep)
參數:
arr:[數組,{str,unicode}]給定輸入數組。
sep:[str或unicode]分隔符,用於分隔arr中的每個字符串元素。
Return:[ndarray]根據輸入類型返回str或unicode的輸出數組。
代碼1:
Python3
# Python program explaining
# numpy.char.partition() function
# importing numpy as geek
import numpy as geek
arr = "GeeksforGeeks - A computer science portal for geeks"
sep ='None'
gfg = geek.char.partition(arr, sep)
print (gfg)
輸出:
[‘GeeksforGeeks - A computer science portal for geeks’ ” ”]
代碼2:
Python3
# Python program explaining
# numpy.char.partition() function
# importing numpy as geek
import numpy as geek
arr = "GeeksforGeeks - A computer science portal for geeks"
sep = 'portal'
gfg = geek.char.partition(arr, sep)
print (gfg)
輸出:
[‘GeeksforGeeks - A computer science ‘ ‘portal’ ‘ for geeks’]
相關用法
- Numpy string less()用法及代碼示例
- Numpy string translate()用法及代碼示例
- Python numpy string replace()用法及代碼示例
- Python numpy string splitlines()用法及代碼示例
- Python numpy string rindex()用法及代碼示例
- Numpy string lstrip()用法及代碼示例
- Numpy string strip()用法及代碼示例
- Numpy string swapcase()用法及代碼示例
- Numpy string isspace()用法及代碼示例
- Numpy string rstrip()用法及代碼示例
- Python numpy string less_equal()用法及代碼示例
- Python numpy string not_equal()用法及代碼示例
- Numpy string greater()用法及代碼示例
- Numpy string equal()用法及代碼示例
- Python numpy string greater_equal()用法及代碼示例
- Numpy string index()用法及代碼示例
- Python numpy string startswith()用法及代碼示例
- Numpy string zfill()用法及代碼示例
- Numpy string title()用法及代碼示例
- Numpy string rfind()用法及代碼示例
注:本文由純淨天空篩選整理自sanjoy_62大神的英文原創作品 Numpy string operations | partition() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。