Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

IPyWidgets Example

This notebook demonstrates ipywidgets functionality.

import ipywidgets as widgets
from IPython.display import display

slider = widgets.IntSlider(
    value=50,
    min=0,
    max=100,
    step=1,
    description='Slider:'
)
display(slider)
Loading...