If you create an array with decimal, then the type will change to float. #### Different type b = np.array([1.1,2.0,3.2]) print(b.dtype) float64 ...
確定! 回上一頁