如何获取函数外部执行的函数的输出on_click
以ipywidgets.Button
在后续步骤中使用?例如,我想取回a
每次点击后的值,以便在 jupyter-notebook 的下一个单元格中使用。到目前为止,我只得到None
.
from ipywidgets import Button
def add_num(ex):
a = b+1
print('a = ', a)
return a
b = 1
buttons = Button(description="Load/reload file list")
a = buttons.on_click(add_num)
display(buttons)
print(a)