I want to Convert my python Dictionary to .csv file where Dictionary consists of "keywordvalue":[listofdata] with that said i want my csv file to look in such way that keyword value is column in csv file and data inside list will stay in that column corresponding to the key. Example -->
my_dict={"date":['11/2/19','3/11/20'],"name":['dexter','morgan']
CSV_file output -->
date,name
'11/2/19','dexter'
'3/11/20','morgan'