Basic Interact


In [2]:
from ipywidgets import interact

def square(x): return x * x

interact(square, x=(0, 10));



In [ ]: