Jupyter Notebook
Basic functions
- When a cell is selected, it turns green
- If a cell is not selected, the kex 'm' converts the cell to 'Markdown' format, which formats the cell content as text.
- If a cell is not selected, the key 'a' creates a new cell above.
- If a cell is not selected, the key 'b' creates a new cell below.
- If a cell is not selected, the key 'x' deletes the cell.
Markdown format
- the # character at the beginning of a line, converts it into a heading
- the characters ** format a text bold
- the * character formats a text in italics
Executing a cell
- The combination CTRL + Enter executes a cell.
In [1]:
print("Hello World!")
Order of execution
- The order of the lines can be varied depending on which cell is executed first.
In [3]:
print("Hello World!")
In [4]:
print("Hello World!")
In [2]:
print("Hello World!")
Hinterlasse einen Kommentar