For each element in `self`, return a list of the words in the string, using `sep` as the delimiter string. See Also -------- char.rsplit
(self, sep=None, maxsplit=None)
| 2568 | return asarray(rpartition(self, sep)) |
| 2569 | |
| 2570 | def rsplit(self, sep=None, maxsplit=None): |
| 2571 | """ |
| 2572 | For each element in `self`, return a list of the words in |
| 2573 | the string, using `sep` as the delimiter string. |
| 2574 | |
| 2575 | See Also |
| 2576 | -------- |
| 2577 | char.rsplit |
| 2578 | |
| 2579 | """ |
| 2580 | return rsplit(self, sep, maxsplit) |
| 2581 | |
| 2582 | def rstrip(self, chars=None): |
| 2583 | """ |