I have a dictionary like this:
data_heading = {'Date': [(3,2)],
'Rate': [(3,3)],
'Product': [(3,7)]}
the KEY defines the heading of column in csv file, the VALUE defines the [(row number, col number)]
I want to read the data, starting from a specific LINE, and specific COLUMN, till the end of csv file.
After reading the contents of file I want to write a new csv of the read data.
I am much confused in this problem, I have tried a long long code to do so, but still unable to write such file.
I'll be Thankful for your kind support. Please help me.
I have read the data and stored it in a list like:
data = ['Date', '2013-03-01', '2013-03-01', '2013-03-01', 'Rate', '$ 50', '$ 60', '$ 70', 'Product', 'MOBILE', 'DVD', 'TV']
but i am unable to write it in a csv. . .