This is the simplest solution that I could think of:
import matplotlib.pyplot as plt
import numpy as np
x = [np.linspace(-100, 100)]
y = item**2 for item in x
plt.plot(x,y)
plt.show()