← 返回教程列表🔢 NumPy 教程数组运算▶ 运行代码import numpy as np a = np.array([1, 2, 3]) b = np.array([4, 5, 6]) print(a + b) print(np.dot(a, b))← 上一章:数组创建