I am trying to add a header to my existing csv file and there are already content in it. I am just wondering if there is any piece of code that could insert a header row at the top (such as ['name','age','salary','country'] without affecting the contents.
Also this code is connected to API so I will run it multiple times. So just wondering if it is possible to detect whether a header exists to avoid multiple header lines.
THank you and hope you all a good day!
Your question has 2 parts:
1) To add a header to your csv (when it does not exists) In order to insert the header row, you can read the csv with below command:
To get create the csv with header row without affecting the contents you can use below command
2) The second parti is little tricky. To infer whether your file is having header or not you will have to write a little code. I can provide you the algorithm.
read csv explicitly with header
Check for 1st row 1st column in your csv, if it contains value as 'name' then write the csv from 2nd row till end else write as is
Hope this helps!!
Thanks, Rohan Hodarkar