Mega Code Archive

 
Categories / Python / Tuple
 

Tuple assigment

[a, b, c] = (1, 2, 3) print a, c (a, b, c) = "ABC" print a, c