What will be the output of the following Python code?
list1 = [1, 3]list2 = list1list1[0] = 4print(list2)
निम्नलिखित Python कोड का आउटपुट क्या होगा?
A. [1, 3]
B. [4, 3]
C. [1, 4]
D. [1, 3, 4]