Answer:
Following are the code in python language set3=set1.intersection(set2)
Step-by-step explanation:
In the python proogramming languge the intersection method is used to find the common value in the set .Bascially the intersection method is the operation of the set method .
Following are the description of the above code
- The set1 is calling the function intersection with passing the pararmeter the of the set2
- The set3 stores the result of the intersection .