1.

What will be the output of the following code? tup1 = (1,2,[1,2],3) tup1[2][1]=3.14 print(tup1) a. (1,2,[3.14,2],3) b. (1,2,[1,3.14],3)c. (1,2,[1,2],3.14) d. Error Message

Answer»

Answer is b. (1,2,[1,3.14],3)



Discussion

No Comment Found

Related InterviewSolutions