After a = [1], b = a, and b.append(2), what is a?

from Python
beginner 1 min

After a = [1], b = a, and b.append(2), what is a?

Report an error