numpy.core.defchararray.istitle(arr)函數為數組中的每個元素返回True(如果該元素是一個帶標題的字符串,並且至少包含一個字符),否則返回false。
參數:
arr :str或unicode的數組
返回:[ndarray]布爾輸出數組。
代碼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)
輸出:
代碼2:
input array: ['P4Q R' '4Q Rp' 'Q rP4' 'Rpq'] output array:[ True True False True]
# 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]
相關用法
- Numpy string less()用法及代碼示例
- Python numpy string greater_equal()用法及代碼示例
- Numpy string equal()用法及代碼示例
- Numpy string greater()用法及代碼示例
- Python numpy string less_equal()用法及代碼示例
- Numpy string rfind()用法及代碼示例
- Numpy string count()用法及代碼示例
- Numpy string find()用法及代碼示例
- Numpy string index()用法及代碼示例
- Python numpy string not_equal()用法及代碼示例
- Numpy string join()用法及代碼示例
- Numpy string rsplit()用法及代碼示例
- Numpy string split()用法及代碼示例
- Numpy string zfill()用法及代碼示例
- Numpy string translate()用法及代碼示例
注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 numpy string operations | istitle() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。