I have a myfile.csv
with rows like
first, second, third
1, 2, 3
a, b, c
1, 2, 3
and so on.
I don't understand how to remove duplicate rows in myfile.csv
.
One condition, we can't save new files, we need to update myfile.csv
.
In order to after run script myfile.csv
look like
first, second, third
a, b, c
1, 2, 3
So new data is not saved to a new file need of updating myfile.csv
.
Thank you very much.