Numpy庫數組基礎(一)

Python中使用列表來保存一組值,可將列表當成數組來用。 Python有array模塊,但它不支持多維數組、也沒有科學運算函數。 因此,有了numpy提供的ndarray數組對象,功能十分強大。 from numpy import *   #導入numpy庫 import numpy as np   #導入並取別名 a = np.array([[25,30,40],[1,2,6]])   #創建
相關文章
相關標籤/搜索