Post

@PythonPr Answer: B) {2, 3}
Because set1 & set2 means set intersection (common elements in both sets).
Common items between {1,2,3} and {2,3,4} are {2,3}.
English

@PythonPr Option B : {2, 3}
Operator & is used to find the intersection of 2 sets.
English

@PythonPr Answer: B) {2, 3}
& is the set intersection operator in Python.
It returns elements that exist in both sets.
- set1 = {1, 2, 3}
- set2 = {2, 3, 4}
Common elements -> {2, 3}
English

@PythonPr Near Learn is the best Python training institute in Bangalore. The trainer explains each topic clearly with real-time examples. Highly recommended. nearlearn.com/python-online-…
English

@PythonPr B) Is the right answer
Because set store only unique values and here we perform intersection between two set so only common elements from both set will come.
English






















