2. Google Colab Interface

Open In Colab

Notebook Basics

Clicking the following URL will take you to Google Colab where you can start a new notebook or open an existing one. When you load up the Colab page, you should be presented with a layout that closely resembles that in the image below.

/Basic%20Binder%20Webpage

If, after clicking the button, you encounter the message “We are sorry, but you do not have access to this serive. Please contact your Organization Administrator for access.” please follow the instructions provided in this link to enable consumer apps.

With the Open notebook modal window open, click on the New Notebook. This will create a colab notebook named Untitled0.ipynb, containing a single blank cell. Your view of the web page should appear similar to the image shown below. A cell in a Jupyter Notebook is essentially a single editable unit that acts as a container for either code or text. Imagine it as a piece of digital paper where you can write a script or make notes.

/New%20Notebook%20Page

As you’ll notice the notebook contains a single cell, which is still empty. Type

print("290 + 180 = ", 290 + 180)

and then click the run button (triangle at the right side of the cell) you will see the output appear below the cell.

Cell Types

Cells are the base unit in Google notebooks. A notebook is essentially just a collection of cells of different types. In Google notebooks there are two primary types of cells:

If you click Open in Colab button at the top of this page, you will be presented with a notebook that already has some cells filled in. Underneath the header Cell Types you will find two different cells that each correspond to one type of cell. You can select the top cell and then click the run button to run all the cells.

If you wish to rename the file, click on Notebook-interface.ipynb in the top-left corner. You can then enter a new name for the file. Refer to the image below for guidance.

/New%20Notebook%20Page

Running Cells

You can also run a selected cell by pressing Shift+Return

You will see that the action performed after running a cell is different for each of the cells.

/Notebook%20Cell%20Types

Editing Cells

You can also edit cells after running them by clicking on the cell like normal text. For markdown cells you will need to double click on the cell area in order revert it back into a editable format.

When modifying code cells, caution is required as any changes — including deletions or edits made to the cell afterward — won’t alter the effects the previous run of the cell had. These effects persist until the cell is rerun with new values of the runtime or runtime is restarted.

The image below gives a visual example of this with the notebook cells on the left, and a python code that does the same set of commands on the right. You can try running the cells found in the left image by looking for the header Editing Cells in this Notebook referenced from the Open in Colab button above.

/Running%20Code

To show the dangers of rerunning cells we can try rerunning the two bottom cells containing the code a = a + 2 and print(a). This will be reflected as a fifth and sixth command executed in the python console. You can see this reflected in the Python console below where the same commands have been issued in the same order. So despite the fact that we only have four cells of python we have executed 6 cells worth of code.

/Rerunnig%20Cells