numpy.core.defchararray.center

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.core.defchararray.center.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.core.defchararray.center(a, width, fillchar=' ')[source]

返回a的副本,其元素居中在长度宽度的字符串中。

逐个调用str.center

参数:

a:array_like of str或unicode

width:int

生成的字符串的长度

fillchar:str或unicode,可选

要使用的填充字符(默认为空格)。

返回:

out:ndarray

输出str或unicode的数组,取决于输入类型

也可以看看

str.center