What will be the output of the following Python code?
>>> a={3,4,5}
>>> a.update([1,2,3])
>>> a
>>> a={3,4,5}
>>> a.update([1,2,3])
>>> aA. 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

Join The Discussion