x = [2000,2001,2002,2003] y = [[1,2,3,4],[5,6,7,8],[9,10,11,12]] for i in range(len(y[0])): plt.plot(x,[pt[i] for pt in y]) plt.show()
I\'m getting