解决json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes

最近做python web,要解析json,这个

json.decoder.JSONDecodeError: Expecting value: line xxx column yyy  (char n) 

问题困扰了一会,记录下来帮大家提供一个解决此问题的方向

 

json.decoder.JSONDecodeError: Expecting  property name enclosed  in double quotes:line xx column yyy  (char n) 

 

其实错误提示已经很清除了,就是json内部要使用  双引号, 如果你使用了单引号就会出现此问题的,改为双引号就可以啦。

你可能感兴趣的:(python,python,web)