In [1]:
%matplotlib inline
In [2]:
import matplotlib.pyplot as plt
import numpy as np
In [3]:
x=np.arange(10)
y=x**2
plt.plot(x,y)
Out[3]:
[<matplotlib.lines.Line2D at 0x1092dd550>]
In [ ]: