For each element, return the lowest index in the string where substring `sub` is found. See Also -------- char.find
(self, sub, start=0, end=None)
| 828 | return asarray(expandtabs(self, tabsize)) |
| 829 | |
| 830 | def find(self, sub, start=0, end=None): |
| 831 | """ |
| 832 | For each element, return the lowest index in the string where |
| 833 | substring `sub` is found. |
| 834 | |
| 835 | See Also |
| 836 | -------- |
| 837 | char.find |
| 838 | |
| 839 | """ |
| 840 | return find(self, sub, start, end) |
| 841 | |
| 842 | def index(self, sub, start=0, end=None): |
| 843 | """ |