On this page
numpy.core.defchararray.split
numpy.core.defchararray.split(a, sep=None, maxsplit=None)[source]-
For each element in
a, return a list of the words in the string, usingsepas the delimiter string.Calls
str.splitelement-wise.Parameters: a : array_like of str or unicode
sep : str or unicode, optional
If
sepis not specified orNone, any whitespace string is a separator.maxsplit : int, optional
If
maxsplitis given, at mostmaxsplitsplits are done.Returns: out : ndarray
Array of list objects
© 2008–2017 NumPy Developers
Licensed under the NumPy License.
https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.core.defchararray.split.html