I have dictionary like this (key:[array]):
{'[email protected]': ['BMW', 'Dodge'],'[email protected]': ['Mercedes']}
and I would like to print this to CSV and make one column for each element of an array, so the result should like (header is optionable):
Owner,Car_1,Car_2
[email protected], BMW, Dodge
[email protected], Mercedes
Thanks!