here is my code sample,
here i am using set in my list..
- if end of list value is
9
, set([list]) result became shuffled - if it is
6
returning as it is..
My question is,
1) why its getting shuffled? in which order/basis its getting shuffled?
2) how to print without shuffle?
>>> a = set([2,4,5,9])
>>> a
set([9, 2, 4, 5])
>>> a = set([2,4,5,6])
>>> a
set([2, 4, 5, 6])
>>>