write a program to find list from getting elements from two other lists code example
Example: same elements of two sets in python
x = {2, 3, 5, 6}
y = {1, 2, 3, 4}
z = x.intersection(y)
x = {2, 3, 5, 6}
y = {1, 2, 3, 4}
z = x.intersection(y)