Table of Contents

Test Notebook

This notebook is used as scratch paper to test nbinteract features.

from ipywidgets import *

raise ValueError('This should only show up in the console.')
def square(x): return x * x

# No error
interact(square, x=(0, 10));
del interact
# Errors
interact(square, x=(0, 10));