On 1 May 2006 08:28:12 -0700, BBands <[EMAIL PROTECTED]> wrote:
There must be a better way to multiply the elements of one list by
another:

a = [1,2,3]
b = [1,2,3]
c = []
for i in range(len(a)):
        c.append(a[i]*b[i])
a = c
print a
[1, 4, 9]


Something like:

>>> [ x * y  for x,y in zip(a,b) ]
[1, 4, 9]

:)

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to