I am using jupyte notebook
This is the Code
from ipywidgets import interact
define a function to work with (cubes the number)
def myfunction(arg): return arg+1 interact(myfunction, arg=9);
The result showing is 10 instead it should be showing a slider
Showing: enter image description here
Instead it show: enter image description here