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

Method islower

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

2400 return isdigit(self)
2401
2402 def islower(self):
2403 """
2404 Returns true for each element if all cased characters in the
2405 string are lowercase and there is at least one cased character,
2406 false otherwise.
2407
2408 See Also
2409 --------
2410 char.islower
2411
2412 """
2413 return islower(self)
2414
2415 def isspace(self):
2416 """

Callers 2

test_islowerMethod · 0.80

Calls 1

islowerFunction · 0.85

Tested by 1

test_islowerMethod · 0.64