I am having a json file which has the text \u0001\u0000\u0000\u0000FILE
in it.
When I read this file and write it into a csv, the same text is written as SOHNULNULNULFILE
.
When I try to read this csv, am getting error like
_csv.Error: line contains NULL byte
I think this is related to some encoding issue.
Guide me how to write and read the csv file as like in the source json without any error.
I am using python 3.6.4