h
: Bring up keyboard shortcuts screen.
In [ ]:
#1 + foos
In [ ]:
open?
In [ ]:
#o # Always press the tab! Tab is the same as Unix. It works a little like predictive text messaging if you are unfamilar with it.
In [ ]:
!ls # ls is a Unix command for list. Here we are listing all files within out current Jupyternotebook directory.
In [ ]:
from IPython.core.display import Image
Image(url='http://python.org/images/python-logo.gif')
In [ ]:
Image(url='https://jupyter.org/assets/main-logo.svg',width=200)
In [ ]:
from IPython.lib.display import YouTubeVideo
YouTubeVideo("7qym7b-qvkE")
In [ ]:
#loadpy http://matplotlib.org/mpl_examples/mplot3d/2dcollections3d_demo.py
You can also notice that probably the best feature of the notebook is inline figures.
It is possible to save a notebook in various formats via the File->Download As
menu.