notebook.community
Edit and run
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))
# here is python code value = "test" print("value is {0}".format(value))
value is test
To get an overview of the possibilities, here are some examples:
In [ ]: