此函数返回所需宽度的数组,以使输入字符串居中并在左侧和右侧使用 fillchar 进行填充。
import numpy as np # np.char.center(arr, width,fillchar) print np.char.center('hello', 20,fillchar='*')
这是它的输出-
*******hello********
参考链接
https://www.learnfk.com/numpy/numpy-char-center.html
标签:center,numpy,fillchar,无涯,char,np,NumPy,hello From: https://blog.51cto.com/u_14033984/7909595