迭代列表中的列表与python中的另一个列表

时间:2016-08-19 19:47:35

标签: python list

我想知道我是否可以在python中使用另一个列表遍历列表列表:

让我们说

lst_a = [x,y,z]  
lst_b = [[a,b,c,d],[e,f,g,h],[i,j,k,l]] 

其中len(lst_a)= len(lst_b)

我想知道如何获得如下的新列表:

lst_c = [[x/a, x/b, x/c, x/d],[y/e, y/f, y/g, y/h],[z/i, z/j, z/k, z/l]]

非常感谢!

3 个答案:

答案 0 :(得分:5)

您可以使用嵌套列表理解

>>> lst_a = [1,2,3]
>>> lst_b = [[1,2,3,4],[2,3,4,5],[3,4,5,6]]
>>> lst_c = [[i/b for b in j] for i,j in zip(lst_a, lst_b)]
>>> lst_c
[[1.0, 0.5, 0.3333333333333333, 0.25], [1.0, 0.6666666666666666, 0.5, 0.4], [1.0, 0.75, 0.6, 0.5]]

答案 1 :(得分:0)

lst_a = [x,y,z]  
lst_b = [[a,b,c,d],[e,f,g,h],[i,j,k,l]] 
lst_c = []

for i in range(len(lst_a)):
    lst_c.append([lst_a[i]/lst_b[i][0]])
    for j in range(1, len(lst_b[i])):
        lst_c[i].append(lst_a[i]/lst_b[i][j])

答案 2 :(得分:0)

你可以使用numpy来做到这一点。

import numpy

lst_a = [x,y,z]  
lst_b = [[a,b,c,d],[e,f,g,h],[i,j,k,l]] 
new_list = []

for i, item in enumerate(lst_a):
   new_list_i = float(lst_a[i])/numpy.array(lst_b[i])
   new_list.append(new_list_i.tolist())

print new_list