intro-to-python icon indicating copy to clipboard operation
intro-to-python copied to clipboard

Widgets Interface

Open s2t2 opened this issue 1 year ago • 0 comments

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)

s2t2 avatar Jul 10 '23 16:07 s2t2