Let's add some notes about using `ipywidgets` for user interface in colab notebooks. Reference: + https://ipywidgets.readthedocs.io/en/stable/ + https://ipywidgets.readthedocs.io/en/stable/examples/Widget%20Basics.html Example: ```py import ipywidgets as widgets widgets.IntSlider() ``` ```py from IPython.display import display w = widgets.IntSlider() display(w) print(w.value) ```
Let's add some notes about using
ipywidgetsfor user interface in colab notebooks.Reference:
Example: