Cleared Interact


In [ ]:
from ipywidgets import interact

def square(x): return x * x

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

In [ ]: