I\'m trying to learn how project Juypter works (formerly IPython Notebook) I\'ve very confused by the cell identifier\'s In[] and Out[] I understand In = an input cell and Out
The numbers after In
and Out
are the execution counts associated with the cells: the first cell executed gets 1, the second 2, and so on:
Execution counter (prompt number)
The kernel should have a single, monotonically increasing counter of all execution requests that are made with store_history=True. This counter is used to populate the In[n] and Out[n] prompts. The value of this counter will be returned as the execution_count field of all execute_reply and execute_input messages.