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)
| 1058 | return asarray(rpartition(self, sep)) |
| 1059 | |
| 1060 | def rsplit(self, sep=None, maxsplit=None): |
| 1061 | """ |
| 1062 | For each element in `self`, return a list of the words in |
| 1063 | the string, using `sep` as the delimiter string. |
| 1064 | |
| 1065 | See Also |
| 1066 | -------- |
| 1067 | char.rsplit |
| 1068 | |
| 1069 | """ |
| 1070 | return rsplit(self, sep, maxsplit) |
| 1071 | |
| 1072 | def rstrip(self, chars=None): |
| 1073 | """ |
no outgoing calls