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

Method isspace

numpy/core/defchararray.py:2415–2426  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

2413 return islower(self)
2414
2415 def isspace(self):
2416 """
2417 Returns true for each element if there are only whitespace
2418 characters in the string and there is at least one character,
2419 false otherwise.
2420
2421 See Also
2422 --------
2423 char.isspace
2424
2425 """
2426 return isspace(self)
2427
2428 def istitle(self):
2429 """

Callers 1

test_isspaceMethod · 0.80

Calls 1

isspaceFunction · 0.85

Tested by 1

test_isspaceMethod · 0.64