notebook.community
Edit and run
In [2]: from ipywidgets import interact def square(x): return x * x interact(square, x=(0, 10));
from ipywidgets import interact def square(x): return x * x interact(square, x=(0, 10));
In [ ]: