目前從比較簡單的例子談起,先將已有初值的串列轉換成陣列: 1. import numpy as np 2. e=[1,2,3,4] 3. ee=np.array(e) 4. print(ee) 5. print(type(ee))第 1 行:先匯入 ...
確定! 回上一頁