Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to remove the last row in a csv but I getting an error: _csv.Error: string with NUL byte

This is what I have so far:

dcsv = open('PnL.csv' , 'a+r+b')
cWriter = csv.writer(dcsv, delimiter=' ')
cReader = csv.reader(dcsv)
for row in cReader:
    cWriter.writerow(row[:-1])

I cant figure out why I keep getting errors

share|improve this question
Perhaps there is a NUL byte in your file? – Thomas Jun 8 '12 at 19:18
1  
I don't think this would do what you want anyway. row[:-1] will give you the current row without the last element. It won't give you all rows except for the last one. In other words, this removes the last column, not the last row. – octern Jun 8 '12 at 19:21
Also, which line in the script is giving you the error? – octern Jun 8 '12 at 19:21
3  
On windows+Python 2.7 at least, 'a+r+b' is an invalid mode – Dhara Jun 8 '12 at 19:23
Remember: it is a very good practice, almost obligatory, to accept one answer to your qustion! Apparently you did not accept any answer to any question you asked. – brandizzi Jun 14 '12 at 4:15

2 Answers

up vote 5 down vote accepted

I would just read in the whole file with readlines(), pop out the last row, and then write that with csv module

import csv
f = open("summary.csv", "r+w")
lines=f.readlines()
lines=lines[:-1]

cWriter = csv.writer(f, delimiter=',')
for line in lines:
    cWriter.writerow(line)
share|improve this answer
This can break if there is a quoted field with a newline in the last CSV-line, so that the logical line extends over multiple lines. – dbaupp Jun 9 '12 at 13:02

I'm not sure what you're doing with the 'a+r+b' file mode and reading and writing to the same file, so won't provide a complete code snippet, but here's a simple method to skip any lines that contains a NUL byte in them in a file you're reading, whether it's the last, first, or one in the middle being read.

The trick is to realize that the docs say the csvfile argument to a csv.writer() "can be any object which supports the iterator protocol and returns a string each time its next() method is called." This means that you can replace the file argument in the call with a simple filter iterator function defined this way:

def filter_nul_byte_lines(a_file):
    for line in a_file:
        if '\x00' not in line:
            yield line

and use it in a way similar to this:

dcsv = open('Pnl.csv', 'rb+')
cReader = csv.reader(filter_nul_byte_lines(dcsv))
for row in cReader:
    print row

This will cause any lines with a NUL byte in them to be ignored while reading the file. Also this technique works on-the-fly as each line is read, so it does not require reading the entire file into memory at once or preprocessing it ahead of time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.