practice mode
time
60
score
0
What does this print?
items = [1, 2, 3, 4, 5]
items.pop()
print(items)
โ
pop() removes the last item from the list.