What is the output of the following code?
a = [1, 2, 3] b = a b[0] = 17 print(a)
B) [17, 2, 3]
[17, 2, 3]
A) [1, 2, 3]
[1, 2, 3]
C) [1, 17, 3]
[1, 17, 3]
D) [17, 1, 2]
[17, 1, 2]