prof-rossetti / intro-to-python

An Introduction to Programming in Python
Other
97 stars 244 forks source link

Widgets Interface #121

Open s2t2 opened 1 year ago

s2t2 commented 1 year ago

Let's add some notes about using ipywidgets for user interface in colab notebooks.

Reference:

Example:

import ipywidgets as widgets

widgets.IntSlider()
from IPython.display import display
w = widgets.IntSlider()
display(w)

print(w.value)