On Sun, Sep 9, 2012 at 3:43 PM, Token Type <[email protected]> wrote: > Is there a unique method in python to unique a list? thanks
I don't believe there's a method for that, but if you don't care about order, try turning your list into a set and then back into a list. ChrisA -- http://mail.python.org/mailman/listinfo/python-list
