Q. What will be the output of the following Python code?

Code:
>>>list1 = [1, 3]
>>>list2 = list1
>>>list1[0] = 4
>>>print(list2)
  • (A) [1, 4]
  • (B) [1, 3, 4]
  • (C) [4, 3]
  • (D) [1, 3]
πŸ’¬ Discuss
βœ… Correct Answer: (C) [4, 3]

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
342
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Praveen Singh
Publisher
πŸ“ˆ
93%
Success Rate