# Define two lists list1 = [1, 2, 3, 4, 5] list2 = [3, 4, 5, 6, 7] # Find common elements using set intersection common_elements = list(set(list1) & set(list2))