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)
| 1106 | return splitlines(self, keepends) |
| 1107 | |
| 1108 | def startswith(self, prefix, start=0, end=None): |
| 1109 | """ |
| 1110 | Returns a boolean array which is `True` where the string element |
| 1111 | in `self` starts with `prefix`, otherwise `False`. |
| 1112 | |
| 1113 | See Also |
| 1114 | -------- |
| 1115 | char.startswith |
| 1116 | |
| 1117 | """ |
| 1118 | return startswith(self, prefix, start, end) |
| 1119 | |
| 1120 | def strip(self, chars=None): |
| 1121 | """ |