數據類型,astype 轉換數據類型

import numpy as np print ('生成數組時指定數據類型') arr = np.array([1, 2, 3], dtype = np.float64) print (arr.dtype) arr = np.array([1, 2, 3], dtype = np.int32) print (arr.dtype) print ( ) print ('使用astype複製數組並
相關文章
相關標籤/搜索