此函数返回输入字符串的新副本,其中所有出现的字符序列都被另一个给定序列替换。
import numpy as np print np.char.replace ('He is a good boy', 'is', 'was')
其输出如下 -
He was a good boy