On this page
numpy.char.expandtabs
- char.expandtabs(a, tabsize=8)[source]
-
Return a copy of each string element where all tab characters are replaced by one or more spaces.
Calls
str.expandtabselement-wise.Return a copy of each string element where all tab characters are replaced by one or more spaces, depending on the current column and the given
tabsize. The column number is reset to zero after each newline occurring in the string. This doesn’t understand other non-printing characters or escape sequences.- Parameters
-
- aarray_like of str or unicode
-
Input array
- tabsizeint, optional
-
Replace tabs with
tabsizenumber of spaces. If not given defaults to 8 spaces.
- Returns
-
- outndarray
-
Output array of str or unicode, depending on input type
See also
© 2005–2022 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/1.23/reference/generated/numpy.char.expandtabs.html