I\'m struggling with writing a dictionary of lists to a .csv file.
This is how my dictionary looks like:
dict[key1]=[1,2,3] dict[key2]=[4,5,6] dict[k
key_list = my_dict.keys() limit = len(my_dict[key_list[0]]) for index in range(limit): writefile.writerow([my_dict[x][index] for x in key_list])