Jupyter Notebook

Jupyter Notebooks are a way for creating interactive documents.

You can place your code next to your documentation.


In [1]:
# here is python code
value = "test"
print("value is {0}".format(value))


value is test

Examples

To get an overview of the possibilities, here are some examples:


In [ ]: