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)
| 2243 | return asarray(expandtabs(self, tabsize)) |
| 2244 | |
| 2245 | def find(self, sub, start=0, end=None): |
| 2246 | """ |
| 2247 | For each element, return the lowest index in the string where |
| 2248 | substring `sub` is found. |
| 2249 | |
| 2250 | See also |
| 2251 | -------- |
| 2252 | char.find |
| 2253 | |
| 2254 | """ |
| 2255 | return find(self, sub, start, end) |
| 2256 | |
| 2257 | def index(self, sub, start=0, end=None): |
| 2258 | """ |
no test coverage detected