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)
| 816 | return endswith(self, suffix, start, end) |
| 817 | |
| 818 | def expandtabs(self, tabsize=8): |
| 819 | """ |
| 820 | Return a copy of each string element where all tab characters are |
| 821 | replaced by one or more spaces. |
| 822 | |
| 823 | See Also |
| 824 | -------- |
| 825 | char.expandtabs |
| 826 | |
| 827 | """ |
| 828 | return asarray(expandtabs(self, tabsize)) |
| 829 | |
| 830 | def find(self, sub, start=0, end=None): |
| 831 | """ |