In [1]:
print("Hello World!")
Number of seconds in a year
In [2]:
365 * 24 * 60 * 60
Out[2]:
In [3]:
print(str(_/1e6) + ' million')
In [4]:
x = 4 + 3
print (x)
This is a Latex equation
$\int_0^\infty x^{-\alpha}$
In [5]:
%matplotlib inline
from matplotlib.pyplot import plot
plot([0,1,0,1])
Out[5]:
This is a plot using matplotlib of a vector
In [ ]: