Open In App

Python-Quizzes | Python Sets Quiz | Question 8

Like Article
Like
Save
Share
Report

Question 8: 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) {0, 8, 6}
(C) {2, 4}
(D) {0, 1, 3, 5, 6, 8}


Answer: (B)

Explanation: The “-” operator is used to get the difference between two iterable.

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