IPython Basics


In [9]:
1+2


Out[9]:
3

In [10]:
foo = [10, 3, 3, 77]

In [11]:
%pylab inline


Populating the interactive namespace from numpy and matplotlib

Some plotting!


In [12]:
plot(foo)


Out[12]:
[<matplotlib.lines.Line2D at 0x105f08610>]

In [13]:
plot?

In [13]: