Python A, b =
a,b = [item1,item2]
# This will set the variable a to item 1 and the variable b to item 2
# This can be done with larger sized arrays with more variables
68Duck