一直接定義法:
1.直接定義
matrix=[0,1,2,3]
2.間接定義
matrix=[0 for i in range(4)] print(matrix)
二Numpy方法:
Numpy內建了從頭開始建立陣列的函數:
zeros(shape)將建立一個以指定形狀用0填充的數組。預設的dtype是float64。
下面是幾個常用的建立方法:
#coding=utf-8import numpy as np a = np.array([1,2,3,4,5])print a b = np.zeros((2,3))print b c = np.arange(10)print c d = np.arange(2,10,dtype=np.float)print d e = np.linspace(1.0,4.0,6)print e f = np.indices((3,3))print f
三其他轉換法:
陣列還有比較常用的一種方法,就是從其他Python結構(例如,列表,元組)轉換。
下面舉一些例子。
列表轉數組:
a = [] a.append((1,2,4)) a.append((2,3,4)) a = np.array(a) a.flatten()
元組轉成數組:
import numpy as np mylist = [1,2,3]print tuple(mylist) iarray = np.array(tuple(mylist))print iarray
相關推薦:《Python教程》
以上是python怎麼創建數組的詳細內容。更多資訊請關注PHP中文網其他相關文章!