The following operations were performed: a = [1, 2, 3, 4, 5] b = a b[:] = [3, 6] Select the correct answer.
The following operations were performed:
a = [1, 2, 3, 4, 5] b = a b[:] = [3, 6]
Select the correct answer.
a.
a = [1, 2, 3, 4, 5]
b = [3, 6]
b.
a = [1, 2, 3, 4, 5]
b = [1, 2, 3, 4, 5, 3, 6]
c.
a = [3, 6]
b = [3, 6]
d.
a = [1, 2, 3, 4, 5]
b = [1, 2, 3, 4, 5]