numpy.char.center#
- char.center(a, width, fillchar=' ')[源代码]#
返回 a 的副本,其元素在长度为 width 的字符串中居中.
- 参数:
- a : 类似数组,具有
StringDType
、bytes_
或str_
数据类型类似数组,具有 - width类数组,具有任意整数数据类型
除非
width < str_len(a)
,否则结果字符串的长度.- fillchar : 类似数组,具有
StringDType
、bytes_
或str_
数据类型类似数组,具有 可选的填充字符(默认为空格).
- a : 类似数组,具有
- 返回:
- outndarray
根据输入类型,输出
StringDType
、bytes_
或str_
类型的数组
参见
备注
虽然
a
和fillchar
可以具有不同的 dtypes,但在a
的 dtype 为 “S” 时,不允许在fillchar
中传递非 ASCII 字符,并且会引发ValueError
.示例
>>> import numpy as np >>> c = np.array(['a1b2','1b2a','b2a1','2a1b']); c array(['a1b2', '1b2a', 'b2a1', '2a1b'], dtype='<U4') >>> np.strings.center(c, width=9) array([' a1b2 ', ' 1b2a ', ' b2a1 ', ' 2a1b '], dtype='<U9') >>> np.strings.center(c, width=9, fillchar='*') array(['***a1b2**', '***1b2a**', '***b2a1**', '***2a1b**'], dtype='<U9') >>> np.strings.center(c, width=1) array(['a1b2', '1b2a', 'b2a1', '2a1b'], dtype='<U4')