pythonCopy import numpy as np arr = [1, 9, 25, 49] out_arr = np.zeros(4) arr_sqrt = np.sqrt(arr, out_arr) print(out_arr) print(arr_sqrt).
確定! 回上一頁