Q. Suppose list1 is [2, 3, 4, 5, 1, 20, 6], what is the value of list1 after this list1.pop(1)? (A) [2, 3, 4, 5, 20, 6] (B) [2, 1, 4, 5, 1, 20, 6] (C) [2, 3, 4, 5, 1, 20, 6, 1] (D) [2, 4, 5, 1, 20, 6] ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (D) [2, 4, 5, 1, 20, 6]