11.6. Variable Destructuring# a,b=5,10 Copy to clipboard print(a) print(b) Copy to clipboard 5 10 Copy to clipboard