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

Method isalpha

numpy/core/defchararray.py:2377–2388  ·  view source on GitHub ↗

Returns true for each element if all characters in the string are alphabetic and there is at least one character, false otherwise. See Also -------- char.isalpha

(self)

Source from the content-addressed store, hash-verified

2375 return isalnum(self)
2376
2377 def isalpha(self):
2378 """
2379 Returns true for each element if all characters in the string
2380 are alphabetic and there is at least one character, false
2381 otherwise.
2382
2383 See Also
2384 --------
2385 char.isalpha
2386
2387 """
2388 return isalpha(self)
2389
2390 def isdigit(self):
2391 """

Callers 2

dtype_short_reprFunction · 0.80
test_isalphaMethod · 0.80

Calls 1

isalphaFunction · 0.85

Tested by 1

test_isalphaMethod · 0.64