after sorted from the lists

Ben Bush pythonnew at gmail.com
Tue Nov 22 09:49:15 EST 2005


I have a list:
[[1,2],[2,1],[3,1],[1,4],[3,3],[1,4]]
How to remove all the duplicate or same after sorted from the lists?
That is, [1,2] and [2,1] are the same after sorting them.
I want the result to be:
[[1,2],[3,1],[1,4],[3,3]]



More information about the Python-list mailing list