MCPcopy Index your code
hub / github.com/numpy/numpy / isalpha

Method isalpha

numpy/_core/defchararray.py:867–878  ·  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

865 return isalnum(self)
866
867 def isalpha(self):
868 """
869 Returns true for each element if all characters in the string
870 are alphabetic and there is at least one character, false
871 otherwise.
872
873 See Also
874 --------
875 char.isalpha
876
877 """
878 return isalpha(self)
879
880 def isdigit(self):
881 """

Callers 5

dtype_short_reprFunction · 0.80
test_isalphaMethod · 0.80
test_isalphaMethod · 0.80

Calls

no outgoing calls

Tested by 2

test_isalphaMethod · 0.64
test_isalphaMethod · 0.64