Post

@PythonPr Answer: A
Solution: x.insert(2, 0) modifies x.
It inserts the item 0 at index 2.
What happens to the current items at index 2 and beyond in x?
They get shifted to the right.
So, x gets modified to
[5, 6, 0, 7, 8]
that's what is printed, hence Option A is correct.
English

