Computer Science, asked by kumararunkaran2002, 4 months ago

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

(i) [3, 4, 5, 20, 5, 25, 1, 3] (ii) [1,3,3, 4, 5, 20, 5, 25]

(iii) [3, 5, 20, 5, 25, 1, 3] (iv) [1, 3, 4, 5, 20, 5, 25,]​

Answers

Answered by k18194580
0

Answer:

Answer to this question is :[3, 5, 20, 5, 25, 1, 3]

Explanation:

Answered by vishakasaxenasl
1

Answer:

(iii) [3, 5, 20, 5, 25, 1, 3]

Explanation:

Pop() function

The pop () function is used in Python for removing the element of the list. The pop function takes the index parameter and removes the element from that index and returns the list.

In case the argument is not given i.e. index is not mentioned. Then the last item is removed from the list and the list is returned.

Here  list1 is [3, 4, 5, 20, 5, 25, 1, 3],

and after list1.pop(1)

The element from the 1st index is removed and the list is returned. Since the indexing of the list starts from 0. So at 1st index, we have 4. So these 4 will be removed and the final list will be:

[3, 5, 20, 5, 25, 1, 3]

#SPJ2

Similar questions