HI
I opened this question first then I deleted it after a while now I re-open it because finally I do not know if its a pb or not!. sorry for my versatile behavior
Ubuntu 18.04 , SageMath 9.0 notebook
why if I uncoment line 3 of the code below, I get TraitError: Invalid selection: value not found but code is ok if line 3 commented.
anIndexL=[1..5]
anCoupleIndexL=Arrangements(anIndexL,2).list()
#anCoupleIndexL=list(Combinations(anIndexL,2).list())
show(anCoupleIndexL)
@interact
def _( nbStepMax=slider(1,20,1,default=20),anCouple = selector(anCoupleIndexL,default=anCoupleIndexL[0])):
show(anCouple)