notebook.community
Edit and run
In [ ]: 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 [ ]: