Python json在有效的JSON上引发ValueError异常

时间:2015-07-29 21:29:20

标签: python json

我有这个名为my_file.json的JSON文件:

{
"t shirt": [
    "tee"
],
"neck": [
    "neckline"
],
"grey": [
    "gray"
]
}

我正在阅读:

f = open('my_file.json', 'r')
json.load(f)

我得到异常ValueError("No JSON object could be decoded"),好像该文件无效JSON,实际上是它(甚至用验证器检查过)。

怎么了?

0 个答案:

没有答案