Open In App

Python-Quizzes | Python Sets Quiz | Question 10

Like Article
Like
Save
Share
Report

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




set1 = set([1, 2, 4, 4, 3, 3, 3, 6, 5]) 
  
print(set1) 


(A) {1, 2, 4, 4, 3, 3, 3, 6, 5}
(B) {1, 2, 3, 4, 5, 6}
(C) [1, 2, 3, 4, 5, 6]
(D) [1, 2, 4, 4, 3, 3, 3, 6, 5]


Answer: (B)

Explanation: All the elements in sets must be unique.

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