Open In App

Python-Quizzes | Functions | Question 8

Suppose list1 is [3, 4, 5, 20, 5, 25, 1, 3], what is list1 after list1.pop(1)?
(A) [3, 4, 5, 20, 5, 25, 1, 3]
(B) [1, 3, 3, 4, 5, 5, 20, 25]
(C) [3, 5, 20, 5, 25, 1, 3]
(D) [1, 3, 4, 5, 20, 5, 25]

Answer: (C)
Explanation: pop(i) removes the ith index element from the list
Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :