jupyter ipywidgets不显示函数返回值

时间:2019-10-18 09:36:27

标签: python jupyter-notebook widget jupyter ipywidgets

我用了最简单的例子:

from ipywidgets import interact, widgets
from IPython.display import display


# this is a sample function
def myfunc(x):
    display(x*2) # I add this for testing
    print(x*2)  # I add this for testing
    return x*2

interact(myfunc,x=widgets.IntSlider(min=-10,max=10,value=0))

在滑动滑块时,没有输出。

enter image description here

但是here中的相同示例确实显示了输出:  enter image description here

如何修复jupyter以显示输出?

1 个答案:

答案 0 :(得分:0)

只是发现这是由Limit Output扩展名引起的

image

参数:

image

尽管限制字符数为:100000,但仍受影响的ipywidgets。

禁用此功能:

image