I would like to run the following in iPython:
mylist = ['a','b']
def f(a,b):
do_something
sliderinterval=(0,10,1)
w = interactive(f, a = sliderinterval, b = sliderinterval)
but instead of writing a and b, I would like to take them from mylist. Is that possible?