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

Method isalnum

numpy/_core/defchararray.py:854–865  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

852 return index(self, sub, start, end)
853
854 def isalnum(self):
855 """
856 Returns true for each element if all characters in the string
857 are alphanumeric and there is at least one character, false
858 otherwise.
859
860 See Also
861 --------
862 char.isalnum
863
864 """
865 return isalnum(self)
866
867 def isalpha(self):
868 """

Callers 4

dtype_short_reprFunction · 0.80
test_isalnumMethod · 0.80
test_isalnumMethod · 0.80
test_isalnum_unicodeMethod · 0.80

Calls

no outgoing calls

Tested by 3

test_isalnumMethod · 0.64
test_isalnumMethod · 0.64
test_isalnum_unicodeMethod · 0.64