nudge = 1wink = 2A, B = nudge, wink # tuple assignmentprint A, B # like A=nudge; B=wink[C, D] = [nudge, wink] # list assignmentprint C, D