For each element in `self`, return a copy with the trailing characters removed. See Also -------- char.rstrip
(self, chars=None)
| 2580 | return rsplit(self, sep, maxsplit) |
| 2581 | |
| 2582 | def rstrip(self, chars=None): |
| 2583 | """ |
| 2584 | For each element in `self`, return a copy with the trailing |
| 2585 | characters removed. |
| 2586 | |
| 2587 | See Also |
| 2588 | -------- |
| 2589 | char.rstrip |
| 2590 | |
| 2591 | """ |
| 2592 | return asarray(rstrip(self, chars)) |
| 2593 | |
| 2594 | def split(self, sep=None, maxsplit=None): |
| 2595 | """ |