🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

निम्नलिखित का आउटपुट क्या होगा पायथन कोड?

What will be the output of the following Python code ?

>>>list1 = [1, 3]
>>>list2 = list1
>>>list1[0] = 4
>>>print(list2)
A)
B)
C)
D)

Explanation:

Sure!

  • list2 is just a reference to list1.
  • When list1[0] is changed to 4, it also affects list2 because both point to the same list.

Answer: (C) [4, 3].

Latest Updates