For each element in `self`, return a copy with the leading and trailing characters removed. See Also -------- char.strip
(self, chars=None)
| 1118 | return startswith(self, prefix, start, end) |
| 1119 | |
| 1120 | def strip(self, chars=None): |
| 1121 | """ |
| 1122 | For each element in `self`, return a copy with the leading and |
| 1123 | trailing characters removed. |
| 1124 | |
| 1125 | See Also |
| 1126 | -------- |
| 1127 | char.strip |
| 1128 | |
| 1129 | """ |
| 1130 | return strip(self, chars) |
| 1131 | |
| 1132 | def swapcase(self): |
| 1133 | """ |