- A [5, 4, 3, 2, 1, 10, 5, 0]
- B []
- C [10, 5, 0, 5, 4, 3, 2, 1]
- D [10, 5, 0]
Python Programming Language MCQ Python List MCQ
⚠ Report ✓ Question Verified Copy Link
x = [5, 4, 3, 2, 1] y = [10, 5, 0] x.extend(y) print(y)
Learn More MCQ Questions from Python Programming Language MCQ Python List MCQ