1from matplotlib import pyplot as plt
2plt.plot([0, 1, 2, 3, 4, 5], [0, 1, 4, 9, 16, 25])
3plt.show()
1import matplotlib.pyplot as plt
2%matplotlib inline
3plt.plot(data)
4#this is not nessisary but makes your plot more readable
5plt.ylabel('y axis means ...')
6plt.xlabel('x axis means ...')