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)
| 1130 | return strip(self, chars) |
| 1131 | |
| 1132 | def swapcase(self): |
| 1133 | """ |
| 1134 | For each element in `self`, return a copy of the string with |
| 1135 | uppercase characters converted to lowercase and vice versa. |
| 1136 | |
| 1137 | See Also |
| 1138 | -------- |
| 1139 | char.swapcase |
| 1140 | |
| 1141 | """ |
| 1142 | return asarray(swapcase(self)) |
| 1143 | |
| 1144 | def title(self): |
| 1145 | """ |