Re: A Short Question on list
Have a look at reduce (http://docs.python.org/library/functions.html#reduce) -- http://mail.python.org/mailman/listinfo/python-list
Re: A Short Question on list
On 03/03/2011 08:08 AM, joy99 wrote: > Dear Group, > If I have a list of elements, like, > list=[1,2,3,4,5,..] > now, if I want to multiply an increment of subset of the list each > time, > like, > > elem1_list=list[0] > elem2_list=list[1] > elem3_list=list[2] > elem4_list=list[3] Why do you assi