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

Method split

site-packages/numpy/core/defchararray.py:2498–2508  ·  view source on GitHub ↗

For each element in `self`, return a list of the words in the string, using `sep` as the delimiter string. See also -------- char.split

(self, sep=None, maxsplit=None)

Source from the content-addressed store, hash-verified

2496 return asarray(rstrip(self, chars))
2497
2498 def split(self, sep=None, maxsplit=None):
2499 """
2500 For each element in `self`, return a list of the words in the
2501 string, using `sep` as the delimiter string.
2502
2503 See also
2504 --------
2505 char.split
2506
2507 """
2508 return split(self, sep, maxsplit)
2509
2510 def splitlines(self, keepends=None):
2511 """

Callers 15

ndpointerFunction · 0.45
_convert_from_stringFunction · 0.45
_from_stringFunction · 0.45
_setfieldnamesMethod · 0.45
fillFormatMethod · 0.45
check_mathlibFunction · 0.45
configurationFunction · 0.45
generate_config_hFunction · 0.45
_parse_einsum_inputFunction · 0.45
einsum_pathFunction · 0.45
einsumFunction · 0.45

Calls 1

splitFunction · 0.70

Tested by 2

get_package_nameFunction · 0.36
runFunction · 0.36