- merge two lists:
result = listA + listB
- remove duplicate item between tow list:
result = set(listA) ^ set(listB)
- get same item between tow list:
result = set(listA) & set(listB)
result = listA + listB
result = set(listA) ^ set(listB)
result = set(listA) & set(listB)