I have comma separated csv file like this:
A,B,C,D,E
1,4,5,6,7
9,52,12,0,7
1,5,15,6,9
I want to delete the content of the 4th column, but not the header.
the desired output is as following:
A,B,C,D,E
1,4,5,,4
9,52,12,,7
1,5,15,,9
how can i do it without using pandas?