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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。