can we append a list with another list in Python ?

Dave Angel d at davea.name
Thu Oct 25 05:16:56 EDT 2012


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




More information about the Python-list mailing list