I have an excel file which contains 2 columns and I want to convert these columns to the dictionary using the header as key and rows as values.
file1.xlxs
name price
Merry 5000
John 6500
Nat 4800
The dictionary should be like this:
List1 = {'name':['Merry,John,Nat'],'price':['5000,6500,4800']}
Please help?