What will be the output of the following code?
a = [1, 2, 3] 
a = tuple(a) 
a[0] = 2 
print(a)

Posted on by