11.6. Variable Destructuring#

a,b=5,10
print(a)
print(b)
5
10