Blog

What is the output of the code below?

list = [8, 5, 1, 4, 5]
list.pop(1)
list.pop(2)
print(list)