What will be the output of the following code?
a = [1, 2, 3] b = tuple(a) b[0] = 5 print(b)
A) (1, 2, 3)
(1, 2, 3)
D) None
None
B) (5, 2, 3)
(5, 2, 3)
C) Error
Error