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)
| 804 | return encode(self, encoding, errors) |
| 805 | |
| 806 | def endswith(self, suffix, start=0, end=None): |
| 807 | """ |
| 808 | Returns a boolean array which is `True` where the string element |
| 809 | in `self` ends with `suffix`, otherwise `False`. |
| 810 | |
| 811 | See Also |
| 812 | -------- |
| 813 | char.endswith |
| 814 | |
| 815 | """ |
| 816 | return endswith(self, suffix, start, end) |
| 817 | |
| 818 | def expandtabs(self, tabsize=8): |
| 819 | """ |