I'm trying to import a JSON file in python but I keep running into an error
with open('e:\0_1export.json', 'r') as f:
data = f.read().strip();
Error message:
ValueError Traceback (most recent call last)
<ipython-input-40-abd9cb3a729a> in <module>()
----> 1 with open('e:\0_1export.json', 'r') as f:
2 data = f.read().strip();
ValueError: embedded null character
Here is the pastebin of the contents of the file i am trying to import .
Any help is appreciated!