import matplotlib.pyplot as plt squares = [1,4,9,16,25] fig,ax = plt.subplots() ax.plot(squares,linewidth=15) # 设置折线宽度15 ax.set_title("Title",fontsize=24) # 设置图表ax的标题 ax.set_xlabel("I'm X",fontsize=14) # 设置x轴名称 ax.set_ylabel("I'm Y",fontsize=14) # 设置y轴名称 ax.tick_params(axis='both',labelsize=14) # 设置刻度标记的大小,axis可设置both、x、y
度标记的大小 plt.show()