003《Python数据分析、挖掘与可视化(第2版)》/6.2.4.py
import numpy as np

x = np.matrix([[1,2,3], [4,5,6]])
y = np.matrix([[1,2], [3,4], [5,6]])
print(x*y)