Lists1 / 15
EASY·Output prediction

What does this code print?

a = [1, 2, 3]
b = a[:]
b.append(4)
print(a)

Sign in to save your progress.