标签:png ima mat pyplot info image alt col src
1 import matplotlib.pyplot as plt 2 x = [1,2,3,4,5] 3 y = [1,4,9,16,25] 4 plt.plot(x,y) 5 plt.show()
绘制折线
原文地址:https://www.cnblogs.com/monsterhy123/p/12642166.html