當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python numpy string startswith()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自sanjoy_62大神的英文原創作品 Numpy string operations | startswith() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。