The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #311
a = 1
b = 2
b, a = a, b
print(b)
An application of unpacking in Python is swapping values between variables without using a temporary or auxiliary variable. In this case, b receives the value of a e.g. 1 . (stackabuse.com/unpacking-in-python-beyond-parallel-assign...)
Question difficulty: 🔵🔵🔵🔵🔵
Similar questions: