Open In App

Python-Quizzes | Python Sets Quiz | Question 1

Like Article
Like
Save
Share
Report

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




sets = {1, 2, 3, 4, 4
print(sets) 


(A) {1, 2, 3}
(B) {1, 2, 3, 4}
(C) {1, 2, 3, 4, 4}
(D) Error


Answer: (B)

Explanation: Duplicate values are not allowed in sets. Hence, the output of the code shown above will be a set containing the duplicate value only once. Hence output will be {1, 2, 3, 4}.

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