I have a really ugly loop in my code which is really slowing down my program. The loop basically performs a dictionary comparison where, if a specific key in dict_A is the same as in dict_B, then for all matches a sort is performed which is written to a file.
for k, v in A_dict.items():
for i, value in B_dict.items():
if k == value[0]:
sorted_B = [list(value) for key, value in groupby(sorted(B_dict.values()), key=itemgetter(1,2))]
outfile.write('{0}\t{1}\t{2}\t{3}\t{4}\t{5}\n'.format (i, k, v, value[1], value[2], value[3])
Unfortunately, the dictionaries both contain over a million items. Other than putting this data into a database then sorting, does anyone have any suggestions on how to speed up this loop? Thanks for the help.
items()method a whole new list is created. You can just fetch directly from B_dict using the key from A_dict. – Keith Aug 29 '11 at 1:10k == value[0]I am writing to file some of the other values from the dictionary item that matched. – drbunsen Aug 29 '11 at 1:21groupby/ sort / list comprehension at all? – agf Aug 29 '11 at 1:23