我有这个名为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,实际上是它(甚至用验证器检查过)。
怎么了?