The sequence of operations

Report a typo

Given a list with several numbers:

numbers = [2, 2, 4, 1, 1, 3, 5]

Here is a sequence of operations performed on this list:

numbers.remove(1)
numbers.extend([0])
numbers.append(len(numbers))
numbers.remove(5)
numbers.append(5)

What does the result list look like?

Select one option from the list
___

Create a free account to access the full topic