Examveda

What will be the output of the following Python code?
>>> a={1,2,3}
>>> {x*2 for x in a|{4,5}}

A. {2,4,6}

B. Error, set comprehensions aren't allowed

C. {8, 2, 10, 4, 6}

D. {8,10}

Answer: Option C


This Question Belongs to Python Program >> Sets In Python

Join The Discussion

Related Questions on Sets in Python