On 10/25/2012 05:04 AM, inshu chauhan wrote: > Actually what I wanted to do is : > > suppose there are 3 lists : > > like for xample : > > clist = [] an empty list , alist = [1,2,3], blist = [4,5,6] > > and the I want the result is clist = [ [1,2,3], [4,5,6] ..] > > then I want to read all the lists in clist one by one > > like : > > for item in clist: > print item > > which should print: > > [1,2,3] > [4,5,6] > >
clist = alist, blist or if the clist initial contents were relevant, perhaps you mean clist += alist, blist -- DaveA -- http://mail.python.org/mailman/listinfo/python-list