numpy.char.center() 函数
此函数返回所需宽度的数组,以便输入字符串居中并在左侧和右侧用 fillchar 填充。
import numpy as np # np.char.center(arr, width,fillchar) print np.char.center('hello', 20,fillchar = '*')
这是它的输出 −
*******hello********
此函数返回所需宽度的数组,以便输入字符串居中并在左侧和右侧用 fillchar 填充。
import numpy as np # np.char.center(arr, width,fillchar) print np.char.center('hello', 20,fillchar = '*')
这是它的输出 −
*******hello********
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。