For each element in `self`, return a copy with the leading and trailing characters removed. See Also -------- char.strip
(self, chars=None)
| 2628 | return startswith(self, prefix, start, end) |
| 2629 | |
| 2630 | def strip(self, chars=None): |
| 2631 | """ |
| 2632 | For each element in `self`, return a copy with the leading and |
| 2633 | trailing characters removed. |
| 2634 | |
| 2635 | See Also |
| 2636 | -------- |
| 2637 | char.strip |
| 2638 | |
| 2639 | """ |
| 2640 | return asarray(strip(self, chars)) |
| 2641 | |
| 2642 | def swapcase(self): |
| 2643 | """ |