Return a copy of each string element where all tab characters are replaced by one or more spaces. See Also -------- char.expandtabs
(self, tabsize=8)
| 2327 | return endswith(self, suffix, start, end) |
| 2328 | |
| 2329 | def expandtabs(self, tabsize=8): |
| 2330 | """ |
| 2331 | Return a copy of each string element where all tab characters are |
| 2332 | replaced by one or more spaces. |
| 2333 | |
| 2334 | See Also |
| 2335 | -------- |
| 2336 | char.expandtabs |
| 2337 | |
| 2338 | """ |
| 2339 | return asarray(expandtabs(self, tabsize)) |
| 2340 | |
| 2341 | def find(self, sub, start=0, end=None): |
| 2342 | """ |