我有一個包含1個鍵和多個列表值的字典。將列表字典中的每個值(列表)寫入新行
{'A-03131': [['Component', 'P-011510', '5'], ['Component', 'P-011319', '1'], ['Component', 'A-03134', '1'], ['Component', 'P-009591', '1'], ['Component', 'P-011509', '1'], ['Component', 'P-011461', '1'], ['Component', 'P-011563', '1'], ['Component', 'A-03094', '2'], ['Component', 'A-03146', '1'], ['Component', 'P-011465', '4']]}
我想寫每個列表值到CSV自己的行。 我目前已經得到這個:
with open(file, 'w+') as outfile :
w = csv.writer(outfile)
w.writerows(sub_assembly.items())
但是,這是寫完整的字典一行。
我需要我的輸出爲csv格式以便進一步處理。我想我已經找到了我的解決方案,一旦我得到它的工作 – AlliDeacon
我想你已經得到了答案。 – bigbounty