- % - command arguments come from the same line (line magics)
- %% - command argument come from the entire cell (cell magics)
``%lsmagic`` - lists all magics commands
``%pwd`` - print the current working directory
``%ls`` - list files and folders in the current working directory
``%ls -la`` - as above but with details
``%matplotlib inline`` - enables displaying matplitlib charts inside the notebook
``%%HTML`` - render entire cell as HTML (e.g. embedding)
``%%javascript`` - interpret entire cell as JavaScript
``%%timeit`` - prints average time to execute the method from the cell