In [5]:
a=2
a


Out[5]:
2

In [1]:
from  matplotlib.pyplot import *
import numpy as np
%matplotlib inline
plot(np.arange(10)**2)


Out[1]:
[<matplotlib.lines.Line2D at 0x7fcc332c1350>]

In [2]:
np.arange(10)**2


Out[2]:
array([ 0,  1,  4,  9, 16, 25, 36, 49, 64, 81])

In [ ]:


In [ ]: