Returns a boolean array which is `True` where the string element in `self` starts with `prefix`, otherwise `False`. See Also -------- char.startswith
(self, prefix, start=0, end=None)
| 2616 | return splitlines(self, keepends) |
| 2617 | |
| 2618 | def startswith(self, prefix, start=0, end=None): |
| 2619 | """ |
| 2620 | Returns a boolean array which is `True` where the string element |
| 2621 | in `self` starts with `prefix`, otherwise `False`. |
| 2622 | |
| 2623 | See Also |
| 2624 | -------- |
| 2625 | char.startswith |
| 2626 | |
| 2627 | """ |
| 2628 | return startswith(self, prefix, start, end) |
| 2629 | |
| 2630 | def strip(self, chars=None): |
| 2631 | """ |