MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / isdigit

Method isdigit

site-packages/numpy/core/defchararray.py:2294–2304  ·  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

2292 return isalpha(self)
2293
2294 def isdigit(self):
2295 """
2296 Returns true for each element if all characters in the string are
2297 digits and there is at least one character, false otherwise.
2298
2299 See also
2300 --------
2301 char.isdigit
2302
2303 """
2304 return isdigit(self)
2305
2306 def islower(self):
2307 """

Callers 15

_pep_440_keyFunction · 0.80
make_tupleFunction · 0.80
_pad_versionFunction · 0.80
_parse_local_versionFunction · 0.80
cache_responseMethod · 0.80
parse_urlFunction · 0.80
describe_typeFunction · 0.80
runFunction · 0.80
start_responseMethod · 0.80
isnumMethod · 0.80
appendMethod · 0.80
_parseMethod · 0.80

Calls 1

isdigitFunction · 0.85

Tested by 2

test_ismethodsMethod · 0.64