Python处理json的错误 obj, end = self.scan_once(s, idx) ValueError: Expecting property name: line 2 colum...

解决办法:

先去回车:

d3 = d2.replace('\n', '')
 

再把单引号替换为双引号。
d3 = d3.replace("'", '"')

转载于:https://www.cnblogs.com/lance2088/p/4092578.html

你可能感兴趣的:(Python处理json的错误 obj, end = self.scan_once(s, idx) ValueError: Expecting property name: line 2 colum...)