Sail E0 Webinar
Question
What is the output of the code shown below?
s=set([1, 2, 3])s.union([4, 5])s|([4, 5])
Options:
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 .  ErrorError
Answer: Option C


The first function in the code shown above returns the set {1, 2, 3, 4, 5}. This is because the method of the function union allows any iterable. However the second function results in an error because f unsupported data type, that is list and set.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers