This is for practicing with Jupyter notebooksΒΆ

There are two types of cells: Markdown cells and Code cells.

This is a Markdown cell. You can use this to a write an introdution to what the notebook is about, or to write description for your code fragment below and what it does, etc.

Here is a practice cell you can edit.


Next, we have a code cell. Execute it now by pressing SHIFT-ENTER

print('This is a code cell')

a = 2
a = 4
b = 1
a + b
5