MCPcopy Create free account
hub / github.com/numpy/numpy / istitle

Method istitle

numpy/core/defchararray.py:2428–2438  ·  view source on GitHub ↗

Returns true for each element if the element is a titlecased string and there is at least one character, false otherwise. See Also -------- char.istitle

(self)

Source from the content-addressed store, hash-verified

2426 return isspace(self)
2427
2428 def istitle(self):
2429 """
2430 Returns true for each element if the element is a titlecased
2431 string and there is at least one character, false otherwise.
2432
2433 See Also
2434 --------
2435 char.istitle
2436
2437 """
2438 return istitle(self)
2439
2440 def isupper(self):
2441 """

Callers 1

test_istitleMethod · 0.80

Calls 1

istitleFunction · 0.85

Tested by 1

test_istitleMethod · 0.64