引入numpy 模組 import numpy as np np1 = np.array([1, 2, 3]) np2 = np.array([3, 4, 5]) # 陣列相加 print(np1 + np2) # [4 6 8] # 顯示相關資訊 ...
確定! 回上一頁