Skip to main content
🔮 Output PredictionPY Python Medium⚡+20 XP

Unpacking Values

What gets printed?

Python
a, *b, c = [1, 2, 3, 4, 5]
print(b)

🔮 What is the output?