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

Method isdigit

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

878 return isalpha(self)
879
880 def isdigit(self):
881 """
882 Returns true for each element if all characters in the string are
883 digits and there is at least one character, false otherwise.
884
885 See Also
886 --------
887 char.isdigit
888
889 """
890 return isdigit(self)
891
892 def islower(self):
893 """

Callers 6

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

Calls

no outgoing calls

Tested by 2

test_isdigitMethod · 0.64
test_isdigitMethod · 0.64