Vidyalelo
Python · Q67

Python Introduction and basic

Programming · Python · question 67

Q67

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

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

Answer: Option C

Solution

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