Computer Science, asked by Anonymous, 8 months ago

Let settl={3,6,9), setB={1,3,9). What will be the result of the following snippet?
print(se A setP)
(A) {3,6,9,1,3,6} (13) {3,9}
(C){1}
(D)) {1,3,6,9}​

Answers

Answered by poojan
6

Answer:

Error.

(If it isn't the expected answer, kindly please recheck the question.)

Explanation:

Set is defined in {}

List is defined in []

Tuple is defined in ()

As the given data isn't in any kind of definable format, the interpreter raises the Syntax Error

Similar questions