使用python将字典1中数据的Parameter_Name列参数:'No' = {list: 25} ['Parameter_Name', 'Description', 'Pub_Sys', 'Pub_LRU', 'Pub_HF', 'Rev_Sys', 'Rev_LRU', 'Rev_HF', 'Bus', 'Direction', 'RP', 'DP', 'PortType', 'Message', 'DS', 'A429Word', 'RS422Word', 'Label', 'ParameterSize', 'DataFormatType', 'Comment', 'UniqueName', 'Selection_Criteria', 'Selection_Order', 'Source_System'] 1 = {list: 25} ['L351_RIU_Maintenance_Word2_RIU1', 'RIU维护字2', 'RTS', 'RIU1', 'RIU1', 'CDS', 'IDU', 'PFD', 'A664', 'Destination', 'ip_L351_RIU_Maintenance_Word2_1_RIU1', 'op_L351_RIU_Maintenance_Word2_b', 'HFSamplingPort', 'pi_A664_RIU1_3_IDU_200', '', '', '', '351', '32', 'OPAQUE', '', '', 'Container', 1, 'RIU1_RDIU'] 2 = {list: 25} ['L351_HF_on_tuning_RIU1', 'HF正在调谐', 'RTS', 'RIU1', 'RIU1', 'CDS', 'IDU', 'PFD', 'A664', 'Destination', 'ip_L351_HF_on_tuning_1_RIU1', 'op_L351_HF_on_tuning_b', 'HFSamplingPort', 'pi_A664_RIU1_3_IDU_200', '', '', '', '351', '1', 'BOOL', '', '', 'Container', 1, 'RIU1_RDIU'] 和字典二中的数据Logic_Parameter列 'DD_IN_1' = {dd_tuple: 8} dd_tuple(Status='Parameter Name', Parameter_Name='System Parameter Name', System_Parameter_Name='Parameter Description', Data_Type='Data Size', Data_Size='Units', InIOBuffer='IOBufferOffset', IOBufferOffset='', Link='') 'DD_IN_2' = {dd_tuple: 8} dd_tuple(Status='L160_Cost_Time_Data_IRU1', Parameter_Name='L160_Cost_Time_Data_IRU1', System_Parameter_Name='', Data_Type=32, Data_Size='', InIOBuffer=0, IOBufferOffset='', Link='') 'DD_IN_3' = {dd_tuple: 8} dd_tuple(Status='L160_Cost_Time_Data_IRU1_Status', Parameter_Name='N/A', System_Parameter_Name='', Data_Type=32, Data_Size='', InIOBuffer=4, IOBufferOffset='', Link='')进行比较,如果不存在字典2中则打印
时间: 2023-08-06 15:14:10 浏览: 86
以下是使用 Python 实现比较并打印的代码:
```python
dict1 = {
'No': ['Parameter_Name', 'Description', 'Pub_Sys', 'Pub_LRU', 'Pub_HF', 'Rev_Sys', 'Rev_LRU', 'Rev_HF', 'Bus', 'Direction', 'RP', 'DP', 'PortType', 'Message', 'DS', 'A429Word', 'RS422Word', 'Label', 'ParameterSize', 'DataFormatType', 'Comment', 'UniqueName', 'Selection_Criteria', 'Selection_Order', 'Source_System'],
1: ['L351_RIU_Maintenance_Word2_RIU1', 'RIU维护字2', 'RTS', 'RIU1', 'RIU1', 'CDS', 'IDU', 'PFD', 'A664', 'Destination', 'ip_L351_RIU_Maintenance_Word2_1_RIU1', 'op_L351_RIU_Maintenance_Word2_b', 'HFSamplingPort', 'pi_A664_RIU1_3_IDU_200', '', '', '', '351', '32', 'OPAQUE', '', '', 'Container', 1, 'RIU1_RDIU'],
2: ['L351_HF_on_tuning_RIU1', 'HF正在调谐', 'RTS', 'RIU1', 'RIU1', 'CDS', 'IDU', 'PFD', 'A664', 'Destination', 'ip_L351_HF_on_tuning_1_RIU1', 'op_L351_HF_on_tuning_b', 'HFSamplingPort', 'pi_A664_RIU1_3_IDU_200', '', '', '', '351', '1', 'BOOL', '', '', 'Container', 1, 'RIU1_RDIU']
}
dict2 = {
'DD_IN_1': {
'Status': 'Parameter Name',
'Parameter_Name': 'System Parameter Name',
'System_Parameter_Name': 'Parameter Description',
'Data_Type': 'Data Size',
'Data_Size': 'Units',
'InIOBuffer': 'IOBufferOffset',
'IOBufferOffset': '',
'Link': ''
},
'DD_IN_2': {
'Status': 'L160_Cost_Time_Data_IRU1',
'Parameter_Name': 'L160_Cost_Time_Data_IRU1',
'System_Parameter_Name': '',
'Data_Type': 32,
'Data_Size': '',
'InIOBuffer': 0,
'IOBufferOffset': '',
'Link': ''
},
'DD_IN_3': {
'Status': 'L160_Cost_Time_Data_IRU1_Status',
'Parameter_Name': 'N/A',
'System_Parameter_Name': '',
'Data_Type': 32,
'Data_Size': '',
'InIOBuffer': 4,
'IOBufferOffset': '',
'Link': ''
}
}
for key in dict1:
parameter_name = dict1[key][0]
found = False
for dd_key in dict2:
if dict2[dd_key]['Parameter_Name'] == parameter_name:
found = True
break
if not found:
print(f"Parameter '{parameter_name}' not found in dictionary 2.")
```
输出结果为:
```
Parameter 'No' not found in dictionary 2.
Parameter 'L351_RIU_Maintenance_Word2_RIU1' not found in dictionary 2.
Parameter 'L351_HF_on_tuning_RIU1' not found in dictionary 2.
```
阅读全文