Sobes.tech
Junior — Senior

Applying * when unpacking a sequence

livecode

Task condition

What will be printed after executing the following code:

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