My CSV has lines like this:
ID,Subject,Body
When I read it with with Python's csv library and output a row using
print row
I get:
(bytearray(b'ID'), bytearray(b'Subject'), bytearray(b'Body'))
Any way to get rid of all the extraneous information and just output the original text?