Recientemente noté que cuando estoy convirtiendo lista, setel orden de los elementos cambia y se ordena por carácter. Considere este ejemplo: x=[1,2,20,6,210] print x # [1, 2, 20, 6, 210] # the order is same as initial order set(x) # set([1, 2, 20, 210, 6]) # in the set(x) output order is...