Vidyalelo
Python · Q72

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 72

Q72

What will be the output of the following Python code? >>>list1 = [1, 3] >>>list2 = list1 >>>list1[0] = 4 >>>print(list2)

A.
[1, 3]
B.
[4, 3]
Answer
C.
[1, 4]
D.
[1, 3, 4]

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board