import numpy as np a = np.array([1, 2, 3]) # 產生一維陣列print(type(a)) # Prints " " print(a.shape) # 矩陣的維度與大小(1維且有3個元素) print(a[0], a[1], ...
確定! 回上一頁