Jump to

v12-l2-codeOutput

(random out of 11)

What is the output of the following Python code ?

a = (1, 2)
b = a
b += (3,)

c = [1, 2]
d = c
d += [3,]

print(a, c)

???