Here we are going to talk about today is np.power(x,t) and np.sqrt(x), which are other basic functions in arithmetic.
First, np.power(x,t), we can also type x**t that we'll obtain the power of x, e.g. 2*np.power(2,3) is the same as 2**3, the answer will be 8.
Last one, np.sqrt(x), which means that x square root. If you are not sure how to get the process of calculation, go find it online.


請先 登入 以發表留言。