M Mr. Dubey π Coach β 103.11K Points π Problem Solving and Python Programming Q. numbers = [1, 2, 3, 4] numbers.append([5,6,7,8]) print(len(numbers)) (A) 4 (B) 5 (C) 8 (D) 12 ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) 5 Explanation: a list is passed in append so the length is 5.