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

Method isdigit

numpy/core/defchararray.py:2390–2400  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

2388 return isalpha(self)
2389
2390 def isdigit(self):
2391 """
2392 Returns true for each element if all characters in the string are
2393 digits and there is at least one character, false otherwise.
2394
2395 See Also
2396 --------
2397 char.isdigit
2398
2399 """
2400 return isdigit(self)
2401
2402 def islower(self):
2403 """

Callers 5

_parse_local_versionFunction · 0.80
__dtype_from_pep3118Function · 0.80
test_isdigitMethod · 0.80
isLabelFunction · 0.80
processMethod · 0.80

Calls 1

isdigitFunction · 0.85

Tested by 1

test_isdigitMethod · 0.64