Rubinho napisal(a): > I've a list with duplicate members and I need to make each entry > unique. > hi, other possibility (my newest discovery:) ) >>> a = [1,2,2,4,2,1,3,4] >>> unique = d.fromkeys(a).keys() >>> unique [1, 2, 3, 4] regards przemek