intro-to-python
intro-to-python copied to clipboard
Widgets Interface
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)