import matplotlib.pyplot as plt x=[1,2,3,4,5] y=[3,6,7,9,2] fig,ax=plt.subplots(1,1) ax.plot(x,y,label='trend') ax.set_title('title test' ...
確定! 回上一頁