例:data = 1,2,3,4 (data会被赋值成元组(1,2,3,4))
j, k = k, j 相当于 temp = j j = k k = temp 但是自动分配不需要临时变量
j, k = k, j
temp = j j = k k = temp