我有以下清单:
list1 = [
{'itemid': '264', 'name': 'Interface Gi1/17(Port1:TP TPIA-CL03-017-G15-14): Bits sent', 'some_other_keys': 'some_more_values'},
{'itemid': '215', 'name': 'Interface Te1/50("Port1:CL-PO-G22-23"): Bits received', 'some_other_keys': 'some_more_values'},
{'itemid': '425', 'name': 'Interface Gi1/46(no description): Bits sent', 'some_other_keys': 'some_more_values'},
{'itemid': '521', 'name': 'Interface Te1/50("Port1:CL-PO-G22-23"): Bits sent', 'some_other_keys': 'some_more_values'},
{'itemid': '310', 'name': 'Interface Gi1/46(no description): Bits received', 'some_other_keys': 'some_more_values'},
{'itemid': '123', 'name': 'Interface Gi1/17(Port1:TP TPIA-CL03-017-G15-14): Bits received', 'some_other_keys': 'some_more_values'},
]
list2 = [
{'itemid': '264', 'clock': '1724146566', 'value': '6246880', 'ns': '120003316'},
{'itemid': '264', 'clock': '1724146746', 'value': '6134912', 'ns': '113448784'},
{'itemid': '215', 'clock': '1724144406', 'value': '5786832', 'ns': '157177073'},
{'itemid': '215', 'clock': '1724144766', 'value': '5968784', 'ns': '760851309'},
{'itemid': '425', 'clock': '1724148366', 'value': '6590424', 'ns': '403316048'},
{'itemid': '425', 'clock': '1724148726', 'value': '6549984', 'ns': '484278803'},
{'itemid': '521', 'clock': '1724148906', 'value': '6346488', 'ns': '306999249'},
{'itemid': '521', 'clock': '1724147106', 'value': '6139008', 'ns': '459391602'},
{'itemid': '310', 'clock': '1724147286', 'value': '6000208', 'ns': '826776455'},
{'itemid': '310', 'clock': '1724147466', 'value': '6784960', 'ns': '152620809'},
{'itemid': '123', 'clock': '1724147826', 'value': '6865272', 'ns': '70247389'},
{'itemid': '123', 'clock': '1724148186', 'value': '6544328', 'ns': '610791670'},
]
现在我要这样做:
首先,根据itemid
存储每个值的总和和平均值(例如,对于264,将其所有值相加,然后除以 len() 函数):list2
value
itemid
其次,找到其中的每两个itemid
slist1
并查看它们的名称是否匹配:
第三,将具有的值received
除以sent
。
我将所有相同的值添加itemid
如下:
from collections import defaultdict
new_list = defaultdict(list)
for entry in list2:
if int(entry['value']) > 0:
new_list[int(entry['itemid'])].append(int(entry['value']))
# >>> new_list
# defaultdict(<class 'list'>, {264: [6246880, 6134912], 215: [5786832, 5968784], 425: [6590424, 6549984], 521: [6346488, 6139008], 310: [6000208, 6784960], 123: [6865272, 6544328]})
现在我应该查找 id 为 264 的name
(name.split(': Bits')[0]
事实上)是否list1
与哪个 id 匹配,然后除以.endswith('Bits received') / .endswith('Bits sent')
。
我们假设一下:
id 264 的名称是 Interface Gi1/17(Port1:TP TPIA-CL03-017-G15-14),另一个具有此名称的 id 是 123。现在,我们将 id 为 123 的所有值的总和(因为它是
received
)除以 id 为 264 的所有值的总和(因为它是sent
)。
应该是这样的:
[
{'name': 'Interface Gi1/17(Port1:TP TPIA-CL03-017-G15-14)', 'received': 13409600, 'sent': 12381792, 'ratio': 1.0830096322083265} # ( (6865272 + 6544328) / (6246880 + 6134912) )
]
使用此代码,我可以对每个值求和并计算平均值itemid
(但这不是我要做的):
import datetime
for x in new_list:
print(f"Item ID: {x}, Ratio: {float(str(sum(new_list[x]) / len(new_list[x]) / 1000 / 1000)[:3])}")
电流输出:
Item ID: 264, Ratio: 6.1
Item ID: 215, Ratio: 5.8
Item ID: 425, Ratio: 6.5
Item ID: 521, Ratio: 6.2
Item ID: 310, Ratio: 6.3
Item ID: 123, Ratio: 6.7
完全预期的输出:
output = [
{'name': 'Interface Gi1/17(Port1:TP TPIA-CL03-017-G15-14)', 'received': 13409600, 'sent': 12381792, 'ratio': 1.0830096322083265}, # ( (6865272 + 6544328) / (6246880 + 6134912) )
{'name': 'Interface Te1/50("Port1:CL-PO-G22-23")', 'received': 11755616, 'sent': 12485496, 'ratio': 0.941541769746272}, # ( (5786832 + 5968784) / (6346488 + 6139008) )
{'name': 'Interface Gi1/46(no description)', 'received': 12785168, 'sent': 13140408, 'ratio': 0.9729658318067446}, # ( (6000208 + 6784960) / (6590424 + 6549984) )
]
你能帮我怎样到达那里吗?
为了获得这样的输出,
您必须在用比例计算后映射到输出
完全更新的代码