hwo to compare two list and find uncommon element 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])