dict_test = {'1': [0, 1], '2': [2, 3]}
{
"_".join([key, str(value_2)]): value_2
for key, value_1 in dict_test.items()
for value_2 in value_1
if ('1' in str(value_2)) or ('2' in str(value_2))
}
dict_column_测量And料温 = {
"_".join([str(key), str(value_2)]): value_2
for key, value_1 in dict_df.items()
for value_2 in value_1.columns
if (('测量' in str(value_2)) or ('料温' in str(value_2)))
}
dict_column_测量And料温