Use iPython Notebook

Basics

  • Create a file with extension as ipynb to create an iPython Notebook.
  • Use a mix of markdown and python code to create any report.
  • Use Ctrl+Enter to start an iPython notebook.
  • Use LaTex Notation to Write Formula
$$c = \sqrt{a^2 + b^2}$$

In [1]:
# Code block
x = 10
y = 20
sum = x + y + 50
print sum