# Python資料科學程式馬拉松-DAY3 運算(運算的時候shape必須相同) ``` a+b np.add(a,b) a-b np.substract(a,b) a*b np.multiply(a,b) a/b np.divide(a,b) a%b np.mod(a,b) a**b np.power(a,b) np.sqrt() ``` ###### tags: `Python資料科學馬拉松`