Open In App

Python-Quizzes | Python Sets Quiz | Question 4

Like Article
Like
Save Article
Save
Share
Report issue
Report

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




set1 = {1, 2, 3
set2 = set1.add(4
print(set2) 


(A) {1, 2, 3, 4}
(B) {1, 2, 3}
(C) Invalid Syntax
(D) None


Answer: (D)

Explanation: The add method doesn’t return anything. Hence there will be no output.

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