Created
April 2, 2020 14:48
-
-
Save kervel/66158ffe3917763f0cd6bb31de7b737c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def show_change(change): | |
display(change) | |
int_slider = widgets.IntSlider(value=7, min=0, max=10) | |
int_slider.observe(show_change, 'value') | |
int_slider.value = 6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment