We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
btn = widgets.Button(description='Medium') display(btn) def btn_eventhandler(obj): print('Hello from the {} button!'.format(obj.description)) btn.on_click(btn_eventhandler)
In VSCode pressing the button does nothing.