How to pass arguments to a function that's nested inside the Ipywidgets.interactive_output() function

后端 未结 0 437
野性不改
野性不改 2021-01-20 00:55

Documented behavior:

a = widgets.IntSlider()
b = widgets.IntSlider()
c = widgets.IntSlider()
ui = widgets.HBox([a, b, c])
def f(a, b, c):
    print((a, b, c))         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题