考虑以下4个列表:
x_name=[’02-2014’,’03-2014’,’05-2014’,’01-2016’,’03-2016’]
x_value=[5,7,10,5,8]
z_name=[’02-2014’,’03-2014’,’04-2014’,’05-2014’,’07-2014’,’01-
2016’,’02-2016’,’03-2016’]
z_value=[16,18,33,12,78,123,3,5]
从这4个列表中,我想有两个列表,例如lst_name和lst_value。 lst_name的内部应与z_name相同,但对于lst_value,如果它们在(x_name
和z_name
中具有相同的名称,则我们应计算其相应值的比率(在{{1 }}和x_value
)(例如5/16)以及z_value
中不在z_name
中的名称(例如'04 -2014','02-2016'等) ,应在lst_value列表中分配给0。因此所需的列表应为:
x_name
有什么想法可以有效地处理它吗?
答案 0 :(得分:1)
代码
from __future__ import print_function
x_name = ['02-2014', '03-2014', '05-2014', '01-2016', '03-2016']
x_value = [5, 7, 10, 5, 8]
z_name = ['02-2014', '03-2014', '04-2014', '05-2014',
'07-2014', '01-2016', '02-2016', '03-2016']
z_value = [16, 18, 33, 12, 78, 123, 3, 5]
Lst_value = []
if len(z_name) > len(x_name):
lst_name = z_name
other = x_name
else:
lst_name = x_name
other = z_name
for n, elem in enumerate(lst_name):
if elem in other:
m = other.index(elem)
Lst_value.append(float(x_value[m])/z_value[n])
else:
Lst_value.append(0.0)
print(Lst_value)
输出
lst_name = ['02-2014', '03-2014', '04-2014', '05-2014', '07-2014', '01-2016', '02-2016', '03-2016']
Lst_value = [0.3125, 0.3888888888888889, 0.0, 0.8333333333333334, 0.0, 0.04065040650406504, 0.0, 1.6]