Tips How to Find Common Values in Two Python Sets Rick Donato Jul 24, 2024 1 min read Python Tip: Use Python Set intersection to find common values between two sets. Here's an example 👇vlans = {100, 200, 300} # Intersection of two sets using & vlans & {100, 500, 300} # Output: {100, 300}