get rid of duplicate elements in list without set

thomasvangurp at gmail.com thomasvangurp at gmail.com
Fri Mar 20 10:54:08 EDT 2009


You could use:
B=list(set(A)).sort()
Hope that helps.
T



More information about the Python-list mailing list