read json file python utf8

Solutions on MaxInterview for read json file python utf8 by the best coders in the world

showing results for - "read json file python utf8"
Ashlie
25 Oct 2017
1with open('keys.json', encoding='utf-8') as fh:
2    data = json.load(fh)
3
4print(data)
5# from stackoverflow : https://stackoverflow.com/questions/46408051/python-json-load-set-encoding-to-utf-8