Returns a boolean array which is `True` where the string element in `self` ends with `suffix`, otherwise `False`. See Also -------- char.endswith
(self, suffix, start=0, end=None)
| 2315 | return encode(self, encoding, errors) |
| 2316 | |
| 2317 | def endswith(self, suffix, start=0, end=None): |
| 2318 | """ |
| 2319 | Returns a boolean array which is `True` where the string element |
| 2320 | in `self` ends with `suffix`, otherwise `False`. |
| 2321 | |
| 2322 | See Also |
| 2323 | -------- |
| 2324 | char.endswith |
| 2325 | |
| 2326 | """ |
| 2327 | return endswith(self, suffix, start, end) |
| 2328 | |
| 2329 | def expandtabs(self, tabsize=8): |
| 2330 | """ |