-
numpy.core.defchararray.split(a, sep=None, maxsplit=None)
[source] -
For each element in
a
, return a list of the words in the string, usingsep
as the delimiter string.Calls
str.rsplit
element-wise.Parameters: a : array_like of str or unicode
sep : str or unicode, optional
If
sep
is not specified orNone
, any whitespace string is a separator.maxsplit : int, optional
If
maxsplit
is given, at mostmaxsplit
splits are done.Returns: out : ndarray
Array of list objects
numpy.core.defchararray.split()
2017-01-10 18:13:26
Please login to continue.