1.

What is the output of the following 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» D. {8,10}


Discussion

No Comment Found