What is the expected output of the following code?
What is the expected output of the following code? list1 = [1, 3] list2 = list1 list1[0] = 4 print(list2)A . [1, 4] B. [4, 3] C. [1, 3, 4] D. [1, 3]View AnswerAnswer: B Explanation: Topics: list reference of a mutable data type Try it yourself: list1 = [1,...