1 a= [0,1,2,3,4,-5,9,-3,12,-4] 2 np.abs(a) out: array([ 0, 1, 2, 3, 4, 5, 9, 3, 12, 4])
python pandas 如何找到NaN、缺失值或者某些元素的索引名称以及位置,np.where的使用