DEV Community

Discussion on: 7 useful python tips

Collapse
 
sonikabaniya profile image
Sonika Baniya

Yeah but this method is named as ' multiple variable assignment ', no?

Collapse
 
vestemir profile image
bkrzys

Tuple unpacking is more specific. 'multiple variable assignment' would be also `a = b = c = None', wouldn't it?
Here, a comma on the right side of the assignment represents implicit tuple creation, which is first executed and then unpacked.