### 7.3 add_subplot()与plt.subplot()的区别
from mpl_toolkits.mplot3d import Axes3D
# pyplot的方式中plt.subplot()和面向对象中的对象.add_subplot()的参数和含义都相同。
# 一个窗口显示多个坐标轴
a = plt.figure()
axx = a.add_subplot(335, projection='3d') # 这里的3d投射要调用一个Axes3D工具包
ax = plt.subplot(335, projection='3d')
plt.show() #显示三维坐标轴