Intersection of Lists in Python
Find the common elements between two lists.
BeginnerList ProgramsExample 7 of 25
intersection-of-lists.py
Run in browser1# Program to find intersection of two lists23list1 = input("Enter first list elements: ").split()4list2 = input("Enter second list elements: ").split()56intersection = list(set(list1) & set(list2))78print("Intersection:", intersection)
Output
Enter first list elements: 1 2 3 Enter second list elements: 2 3 4 Intersection: ['2', '3']
What's going on
We convert both lists to sets and use the & operator to compute their intersection.