Open In App

Python-Quizzes | Python Sets Quiz | Question 9

Like Article
Like
Save Article
Save
Share
Report issue
Report

Question 9: What is the output of the following program?




A = {0, 2, 4, 6, 8}; 
B = {1, 2, 3, 4, 5}; 
  
print( A ^ B) 


(A) {0, 1, 2, 3, 4, 5, 6, 8}
(B) {2, 4}
(C) {0, 8, 6}
(D) {0, 1, 3, 5, 6, 8}


Answer: (D)

Explanation: The “^” operator is used to get the Symmetric difference.

Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 18 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads