**I want combine two lists in one dictionary in complete form ** my code
name_list =[225.85, 286.818, 238.8, 282.43, 238.522, 238.378, 233.989, 294.957, 238.522, 290.847, 238.8, 282.286, 290.847, 282.008, 282.43, 233.989, 225.85, 282.008, 294.957, 282.286, 286.818, 238.378, 229.961]
num_list =[[3, 24, 5, 12], [3, 12, 24, 5], [3, 12, 5, 24], [3, 5, 24, 12], [3, 5, 12, 24], [24, 3, 12, 5], [24, 3, 5, 12], [24, 12, 3, 5], [24, 12, 5, 3], [24, 5, 3, 12], [24, 5, 12, 3], [12, 3, 24, 5], [12, 3, 5, 24], [12, 24, 3, 5], [12, 24, 5, 3], [12, 5, 3, 24], [12, 5, 24, 3], [5, 3, 24, 12], [5, 3, 12, 24], [5, 24, 3, 12], [5, 24, 12, 3], [5, 12, 3, 24], [5, 12, 24, 3]]
numbers_dict = dict(zip(name_list, num_list))
print(numbers_dict)
answer
{225.85: [12, 5, 24, 3], 286.818: [5, 24, 12, 3], 238.8: [24, 5, 12, 3], 282.43: [12, 24, 5, 3], 238.522: [24, 12, 5, 3], 238.378: [5, 12, 3, 24], 233.989: [12, 5, 3, 24], 294.957: [5, 3, 12, 24], 290.847: [12, 3, 5, 24], 282.286: [5, 24, 3, 12], 282.008: [5, 3, 24, 12], 229.961: [5, 12, 24, 3]}
My problem is the dictionary does not consist of all data that exists in the two lists above.