-
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.rsplitelement-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
numpy.core.defchararray.split()
2025-01-10 15:47:30
Please login to continue.