plot绘图 坐标系图(折线图) 折线图用于显示随时间或有序类别的变化趋势 plt.plot(x,y,format_string,**kwargs) y:Y轴数据,列表或数组,必选 x:X轴数据,列表或数组,可选 format_strong:线条样式格式字符串,可选 **kwargs:第二组或更多(x,y,format_string),多组参数,多个线条 绘制一条线时,x轴可以省略,默认用y轴数据的索引代替 import matplotlib.pyplot as plt plt.plot([0,…