* import matplotlib as mpl(很強大)* import matplotlib.pyplot as plt(經常使用的子模塊)複製代碼
plt.plot(x,siny,label="sin(x)") plt.plot(x,cosy,color="red",linestyle="--",label="cons(x)") plt.xlabel("x axis") plt.ylabel("y value") plt.legend() plt.show()複製代碼