Is there any way to delete the last row, from a csv file, as a new row gets added ? (without having to create separate / duplicate csv file).
My goal is to keep the running csv file from exceeding number of rows and size.
Ideally:
- Without creating additional file
- Preferred csv.DictWriter/Reader , but csv.reader or csv.writer is ok.
The errors I get are:
DictWriter is not iterable.
And DictReader does not write to csv.