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

Method isalnum

numpy/core/defchararray.py:2364–2375  ·  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

2362 return index(self, sub, start, end)
2363
2364 def isalnum(self):
2365 """
2366 Returns true for each element if all characters in the string
2367 are alphanumeric and there is at least one character, false
2368 otherwise.
2369
2370 See Also
2371 --------
2372 char.isalnum
2373
2374 """
2375 return isalnum(self)
2376
2377 def isalpha(self):
2378 """

Callers 2

dtype_short_reprFunction · 0.80
test_isalnumMethod · 0.80

Calls 1

isalnumFunction · 0.85

Tested by 1

test_isalnumMethod · 0.64