{
"Sponge": {
"orientation": "Straight",
"gender": "Woman",
"age": 23,
"rel_status": "Single",
"summary": " Bonjour! Je m'appelle Jacqueline!, Enjoy cooking, reading and traveling!, Love animals, languages and nature :-) ",
"location": "Kao-hsiung-k’a",
"id": "6693397339871"
}
}
私は上記のjsonを持っていますが、私はそれにいくつかの特殊文字があることを除いてそれを読もうとしています。たとえば、場所の「 '」。これは私がJSON読みしようとしているいくつかのエラー上げる:jsonをpython3.5でデコードしているときのUnicodeDecodeError
UnicodeEncodeError: 'charmap' codec can't encode characters in position 27-28: character maps to <undefined>
私のpython 3.5を使用していますが、私は次のコードを実行した:のためのファイルを開くには
with open('test.json') as json_data:
users = json.load(json_data)
print users
質問タイトルはUnicode ** De ** codeErrorです。実際に報告されたエラーはUnicodeです** En ** codeError –