Source Code:
(back to article)
A = {1, 2, 3} B = {2, 3, 4} C = {3, 4, 5} print(A.intersection(B, C))
Result:
Report an issue