Examveda

What will be the output of the following Python code snippet?
s=set([1, 2, 3])
s.union([4, 5])
s|([4, 5])

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

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

C. {1, 2, 3, 4, 5}
Error

D. Error
Error

Answer: Option C


This Question Belongs to Python Program >> Sets In Python

Join The Discussion

Related Questions on Sets in Python