निम्नलिखित का आउटपुट क्या होगा पायथन कोड?
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]
D
[1, 3]
Explanation
Sure!
list2is just a reference tolist1.- When
list1[0]is changed to4, it also affectslist2because both point to the same list.
Answer: (C) [4, 3].
Correct Answer: C) [4, 3]