In [2]:
import mwapi
In [3]:
from ipywidgets import interact
@interact
def splif(what=[1,100]):
    print(what)
    
99