import matplotlib.pyplot as plt for i in df3: ... plt.plot(df4['订单日期'],df4['销售额']) plt.show() # 或者不需要横坐标为日期的话可以: for i in df3: ... df4['销售额'].plot()