import matplotlib.pyplot as plt # x axis values x = [1,2,3] # y axis values y = [2,4,1] # Plot lines and/or markers to the Axes. plt.plot(x, ...
確定! 回上一頁