import matplotlib.pyplot as plt a=[1,2,3,4] b=[2,4,6,8] c=[1,4,9,16] plt.plot(a,b,'r',linestyle='dashed') plt.show(). Output:.
確定! 回上一頁