What is meant by sequence unpacking in python??
A ankurankan Right off the assembly line Aug 23, 2011 #1 What is meant by sequence unpacking in python??
A abhijangda Padawan Aug 24, 2011 #2 Just google it. docs.python.org/tutorial/datastructures.html may be this could help you.
Ishu Gupta Manchester United Aug 24, 2011 #3 list = [1, 2, 3] a, b, c = list print a, b print c ... 1 2 3