from matplotlib.pyplot import plot, show, grid, axhline, axvline
from numpy import linspace

x = linspace(-10, 10, 100)
y = x**2

plot(x,y)
grid()
show()
