import numpy as np import matplotlib.pyplot as plt x=[1,2,3,4] y=[5,4,3,2] plt.subplot(2,2,1)#呈現2行3列,第一幅圖 plt.plot(x,y) ...
確定! 回上一頁