how to get uncommon elements from two lists in python code example
Example: how to find uncommon elements in two lists in python
>> set([1,2,3]) ^ set([3,4,5])
set([1, 2, 4, 5])
>> set([1,2,3]) ^ set([3,4,5])
set([1, 2, 4, 5])