Numpy 的 expandtabs(~)
方法将 "\t"
的所有实例替换为指定数量的空格。
参数
1. tabsize
| int
用于替换 "\t"
的所需空格数。默认情况下,tabsize=8
。
返回值
每个字符串元素的副本,其中制表符替换为指定数量的空格。
例子
np.char.expandtabs("\t")
array(' ', dtype='<U8')
这里,我们有 8 个空格。
np.char.expandtabs("\t", tabsize=2)
array(' ', dtype='<U2')
这里,我们有 2 个空格。
相关用法
- Python expandtabs()用法及代码示例
- Python NumPy expand_dims方法用法及代码示例
- Python math expm1()用法及代码示例
- Python exponential转float用法及代码示例
- Python NumPy exp2方法用法及代码示例
- Python NumPy exp方法用法及代码示例
- Python NumPy expm1方法用法及代码示例
- Python math exp()用法及代码示例
- Python exec()用法及代码示例
- Python BeautifulSoup extend方法用法及代码示例
- Python BeautifulSoup extract方法用法及代码示例
- Python email.message.Message.walk用法及代码示例
- Python numpy matrix eye()用法及代码示例
- Python enchant.request_dict()用法及代码示例
- Python email.headerregistry.DateHeader用法及代码示例
- Python enum.IntEnum用法及代码示例
- Python enchant.get_enchant_version()用法及代码示例
- Python email.message.EmailMessage.add_header用法及代码示例
- Python emoji转text用法及代码示例
- Python enchant.request_pwl_dict()用法及代码示例
- Python eval用法及代码示例
- Python email.utils.getaddresses用法及代码示例
- Python email.header.decode_header用法及代码示例
- Python email.message.EmailMessage.walk用法及代码示例
- Python NumPy eye方法用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | expandtabs method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。