-
Notifications
You must be signed in to change notification settings - Fork 245
Open
Description
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:
import ipywidgets as widgets
widgets.IntSlider()
from IPython.display import display
w = widgets.IntSlider()
display(w)
print(w.value)
Metadata
Metadata
Assignees
Labels
No labels