For each element in `self`, return a copy of the string with uppercase characters converted to lowercase and vice versa. See Also -------- char.swapcase
(self)
| 2640 | return asarray(strip(self, chars)) |
| 2641 | |
| 2642 | def swapcase(self): |
| 2643 | """ |
| 2644 | For each element in `self`, return a copy of the string with |
| 2645 | uppercase characters converted to lowercase and vice versa. |
| 2646 | |
| 2647 | See Also |
| 2648 | -------- |
| 2649 | char.swapcase |
| 2650 | |
| 2651 | """ |
| 2652 | return asarray(swapcase(self)) |
| 2653 | |
| 2654 | def title(self): |
| 2655 | """ |