📜  numpy字符串操作 | istitle()函数

📅  最后修改于: 2022-05-13 01:55:03.525000             🧑  作者: Mango

numpy字符串操作 | istitle()函数

numpy.core.defchararray.istitle(arr)函数对数组中的每个元素返回True ,如果元素是标题大小写的字符串并且至少有一个字符,则返回 false。

代码#1:

# Python Program explaining
# numpy.char.istitle() function 
  
import numpy as geek 
  
  
in_arr = geek.array(['P4Q R', '4Q Rp', 'Q rP4', 'Rpq'])
print ("input array : ", in_arr)
  
out_arr = geek.char.istitle(in_arr)
print ("output  array :", out_arr)
输出:
input array :  ['P4Q R' '4Q Rp' 'Q rP4' 'Rpq']
output array : [ True  True False  True]
代码#2:
# Python Program explaining 
# numpy.char.istitle() function  
  
import numpy as geek  
  
  
in_arr = geek.array(['GEEKS', 'for', 'Geeks']) 
  
print ("input array : ", in_arr) 
  
out_arr = geek.char.istitle(in_arr) 
print ("output array :", out_arr ) 
输出:
input array :  ['GEEKS' 'for' 'Geeks']
output array : [False False  True]