Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyPythonlist ops and slicingSingle-choice MCQ

Knowing that `+=` on a list mutates it in place, what does this print?

a = [1, 2] b = a a += [3] print(b)