python3从json文件中读取数据json.loads(path)

import json

f = open('xxx.json', 'r+')

str_json = f.read()

temp = str_json.replace("'", '"') # 将 单引号 替换为 双引号

temp = json.loads(temp) # loads 将 字符串 解码为 字典

# 这样就 ok 了

需要注意的是,在json字符串中不能出现单引号,如果是单引号,就会出现一下错误:

json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes: line 1 column 2 (char 1)

所以需要使用双引号来代替:

str_json.replace("'", '"')

你可能感兴趣的:(python3从json文件中读取数据json.loads(path))