¡@

Home 

python Programming Glossary: first_list

Combining two lists and removing duplicates, without removing duplicates in original list

http://stackoverflow.com/questions/1319338/combining-two-lists-and-removing-duplicates-without-removing-duplicates-in-orig

of what the code looks like and what i want as a result. first_list 1 2 2 5 second_list 2 5 7 9 # The result of combining the two.. for something like this i would use sets but a set on first_list would purge the duplicate values it already has. So i'm simply.. way of determining which elements they are like this first_list 1 2 2 5 second_list 2 5 7 9 in_first set first_list in_second..