-
numpy.core.defchararray.rsplit(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.Except for splitting from the right,
rsplitbehaves likesplit.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, the rightmost ones.Returns: out : ndarray
Array of list objects
See also
numpy.core.defchararray.rsplit()
2025-01-10 15:47:30
Please login to continue.