numpy.core.defchararray.partition
numpy.core.defchararray.rjust
numpy.core.defchararray.
replace
对于a中的每个元素,返回一个字符串的副本,其中所有出现的子字符串old被new替换。
new
逐个调用str.replace。
a:数组类似str或unicode
old,new:str或unicode
count:int,可选
如果给出了可选参数count,则只替换第一个count。
count
out:ndarray
输出str或unicode的数组,取决于输入类型
也可以看看
str.replace