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

Method islower

numpy/_core/defchararray.py:892–903  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

890 return isdigit(self)
891
892 def islower(self):
893 """
894 Returns true for each element if all cased characters in the
895 string are lowercase and there is at least one cased character,
896 false otherwise.
897
898 See Also
899 --------
900 char.islower
901
902 """
903 return islower(self)
904
905 def isspace(self):
906 """

Callers 5

test_islowerMethod · 0.80
test_islowerMethod · 0.80
test_islower_unicodeMethod · 0.80

Calls

no outgoing calls

Tested by 4

test_islowerMethod · 0.64
test_islowerMethod · 0.64
test_islower_unicodeMethod · 0.64