numpy.core.defchararray.startswith()函數返回一個布爾數組,該數組為True,其中的字符串元素以前綴開頭,否則為False。
用法: numpy.core.defchararray.startswith(arr, prefix, start = 0, end = None)
參數:
arr:[str或Unicode的array-like] str的Array-like。
prefix:[str]輸入字符串。
開始,結束:[int,可選]使用可選的開始,從該位置開始測試。在可選端,停止在該位置進行比較。
Return:[ndarray]返回布爾數組。
代碼1:
Python3
# Python program explaining
# numpy.char.startswith() function
# importing numpy as geek
import numpy as geek
arr = "GeeksforGeeks - A computer science portal"
prefix = 'Geeks'
gfg = geek.char.startswith(arr, prefix, start = 0, end = None)
print (gfg)
輸出:
True
代碼2:
Python3
# Python program explaining
# numpy.char.startswith() function
# importing numpy as geek
import numpy as geek
arr = "GeeksforGeeks - A computer science portal"
prefix = 'None'
gfg = geek.char.startswith(arr, prefix, start = 0, end = None)
print (gfg)
輸出:
False
相關用法
- Numpy string less()用法及代碼示例
- Numpy string upper()用法及代碼示例
- Numpy string isnumeric()用法及代碼示例
- Python numpy string replace()用法及代碼示例
- Numpy string lower()用法及代碼示例
- Numpy string title()用法及代碼示例
- Numpy string zfill()用法及代碼示例
- Python numpy string splitlines()用法及代碼示例
- Numpy string rjust()用法及代碼示例
- Numpy string islower()用法及代碼示例
- Numpy string isdigit()用法及代碼示例
- Numpy string strip()用法及代碼示例
- Numpy string swapcase()用法及代碼示例
- Numpy string isspace()用法及代碼示例
- Numpy string translate()用法及代碼示例
- Numpy string rstrip()用法及代碼示例
- Numpy string lstrip()用法及代碼示例
- Numpy string rsplit()用法及代碼示例
- Python numpy string rpartition()用法及代碼示例
- Numpy string isdecimal()用法及代碼示例
注:本文由純淨天空篩選整理自sanjoy_62大神的英文原創作品 Numpy string operations | startswith() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。