Programming (Year 12)
Lists
What will the following code output? print([1, 2, 3] * 2)
[1, 2, 3]
[2, 4, 6]
[1, 2, 3, 1, 2, 3]
[1, 2, 3, 2, 3]