Just a little perturbation
cand = ["A","B","C","D"]
show(cand)
len(cand)
display the natural order A, B, C, D
but
Scand=Set(cand)#Attention la majuscule est importante
show(Scand)
change the order to B, D, A, C
. This is disturbing since later one ask for arrangement
the order is not the naturel one which is highly perturbating in view of the high number of cases.