Intersection of Lists

Find the common elements between two lists.

PythonBeginner
Python
# Program to find intersection of two lists

list1 = input("Enter first list elements: ").split()
list2 = input("Enter second list elements: ").split()

intersection = list(set(list1) & set(list2))

print("Intersection:", intersection)

Output

Enter first list elements: 1 2 3
Enter second list elements: 2 3 4
Intersection: ['2', '3']

We convert both lists to sets and use the & operator to compute their intersection.