PYLAB

EVERYTHING FOR PLOT

import numpy as np import pylab x = np.arange(0,10,0.01) y = np.sin(x)**2 pylab.plot(x,y) [<matplotlib.lines.Line2D object at 0x7f03c3d26e20>] pylab.show()