Examveda

What will be the output of the following Python code?
>>> a={3,4,5}
>>> a.update([1,2,3])
>>> a

A. Error, no method called update for set data type

B. {1, 2, 3, 4, 5}

C. Error, list can't be added to set

D. Error, duplicate item present in list

Answer: Option B


This Question Belongs to Python Program >> Sets In Python

Join The Discussion

Related Questions on Sets in Python